PostgreSQL
文章平均质量分 68
haige807
很好,很天真!
展开
-
PostgreSQL Linux安装,使用简易手册
PostgreSQL Linux 安装及使用,简易手册 一,配置方法: 1 ,首先下载任意版本的PostgreSQL For Linux X86_64 wget http://downloads.enterprisedb.com/postgresql/postgresql-8.4.1-1-linux-x64.bin2 ,文本模式安装 [root@imdba.cn ~]# ./p...原创 2011-01-16 00:17:37 · 311 阅读 · 0 评论 -
postgreSQL jdbc连接
import java.sql.*;public class Dbtest {/*** @param args*/public static void main(String[] args) {// TODO Auto-generated method stubSystem.out.println(" this is a test " );try {Class.forName( "org.p...原创 2011-01-16 00:41:56 · 197 阅读 · 0 评论 -
配置PostgreSQL数据库常见问题
在FreeBSD下安装 安装完数据库后,从客户端连接,出现下列提示。 could not connect to server: Connection refused (0x0000274D/10061) Is the server running on host "192.168.108.3" and accepting TCP/IP connections on por...原创 2011-01-16 14:44:42 · 410 阅读 · 0 评论 -
【转】postgresql在windows(包括win7)下的安装配置
声明:本PostgreSQl实用指南系列为刘兴(http://deepfuture.iteye.com/)原创,未经笔者授权,任何人和机构不能转载 首先,以下是常用命令:③ initdb 初始化 数据库。 ④ pg_ctl start 启动数据库 ⑤ pg_ctl stop 停止数据库 ⑥ post_svc -install 建立windows nt 服务(需要设置系统环境变量) ⑦ ...原创 2011-10-25 00:14:44 · 159 阅读 · 0 评论 -
PostgreSQL – Change Default Encoding of New Databases To UTF-8 (Optional)
PostgreSQL – Change Default Encoding of New Databases To UTF-8 (Optional)When creating a new database (e.g. with createdb blog) PostgreSQL actually copies a template database. There are two pre...原创 2012-02-07 11:26:48 · 112 阅读 · 0 评论