代码搜索:postgres
找到约 1,357 项符合「postgres」的源代码
代码结果 1,357
www.eeworm.com/read/100285/6272263
hlp drop_rule.hlp
.pgaw:Help.f.t insert end "DROP RULE" {bold} " drops a rule from the specified Postgres rule system. Postgres will immediately cease enforcing it and will purge its definition from the system catalogs
www.eeworm.com/read/100285/6272283
hlp data_types.hlp
.pgaw:Help.f.t configure -tabs {130 300 450}
.pgaw:Help.f.t insert end \
"Data types\n\n" {title} \
"Postgres has a rich set of native data types available to users. Users may add new types to Postgre
www.eeworm.com/read/100285/6272290
hlp begin.hlp
.pgaw:Help.f.t insert end "BEGIN" {bold} "
By default, Postgres executes transactions in unchained mode (also known as " {} "autocommit" {bold} " in other database systems). In other words, each user
www.eeworm.com/read/100285/6272304
hlp alter_user.hlp
.pgaw:Help.f.t insert end "ALTER USER" {bold} " is used to change the attributes of a user's Postgres account. Please note that \
it is not possible to alter a user's " {} "usesysid" {bold} " via the
www.eeworm.com/read/100285/6272307
hlp create_language.hlp
.pgaw:Help.f.t insert end "CREATE LANGUAGE" {bold} ". Using CREATE LANGUAGE, a Postgres user can register a new language with Postgres. Subsequently, functions and trigger procedures can be defined in
www.eeworm.com/read/114188/15066728
htm 00000004.htm
BBS水木清华站∶精华区
BBS水木清华站∶精华区
发信人: Numb (麻木), 信区: Linux
标 题: postgreSQL95安装使用说明&nb
www.eeworm.com/read/114188/15072529
htm 00000004.htm
BBS水木清华站∶精华区
BBS水木清华站∶精华区
发信人: Numb (麻木), 信区: Linux
标 题: postgreSQL95安装使用说明&nb
www.eeworm.com/read/413132/11165769
pgsql readme.pgsql
/*
$Id: README.pgsql,v 1.9.2.1 2004/04/17 22:10:09 mbowe Exp $
*/
--------------------------------------------------------------------------
Using vpopmail with PostgreSQL is not very common.
The
www.eeworm.com/read/100285/6272217
pg_dumpall
#!/bin/sh
#
# pg_dumpall [pg_dump parameters]
# dumps all databases to standard output
# It also dumps the pg_shadow table
#
# to adapt to System V vs. BSD 'echo'
#set -x
if echo '\\' | grep '\\\\' >/
www.eeworm.com/read/275831/10793737
rb 09 - talking directly to a postgres database.rb
require 'rubygems'
require 'postgres'
def with_db
db = PGconn.connect('localhost', 5432, '', '', 'cookbook',
'cookbook_user', 'password')
begin
yield db
ensure
db.