代码搜索:postgres

找到约 1,357 项符合「postgres」的源代码

代码结果 1,357
www.eeworm.com/read/120487/6073295

c common.c

#include "postgres_fe.h" #include "extern.h" char * pgtypes_alloc(long size) { char *new = (char *) calloc(1L, size); if (!new) { errno = ENOMEM; return NULL; } memset(new, '\0', size)
www.eeworm.com/read/120487/6073371

c testlibpq.c

/* * testlibpq.c * * Test the C version of LIBPQ, the POSTGRES frontend library. */ #include #include #include "libpq-fe.h" static void exit_nicely(PGconn *conn) { PQfinish
www.eeworm.com/read/100285/6271214

c variable.c

/* * This file contains some public functions * related to show/set/reset variable commands. * Tatsuo Ishii * $Id: variable.c,v 1.4.2.1 1999/08/02 05:25:12 scrappy Exp $ */ #include "postgres.h"
www.eeworm.com/read/100285/6271681

java connection.java

package postgresql; import java.io.*; import java.net.*; import java.sql.*; import java.util.*; import postgresql.Field; import postgresql.fastpath.*; import postgresql.largeobject.*; import postgres
www.eeworm.com/read/100285/6272233

hlp create_type.hlp

.pgaw:Help.f.t insert end "CREATE TYPE" {bold} " allows the user to register a new user data type with Postgres for use in the current data base. The user who defines a type becomes its owner. Typenam
www.eeworm.com/read/100285/6272281

hlp lock.hlp

.pgaw:Help.f.t insert end "LOCK" {bold} " Postgres always uses the least restrictive lock mode whenever possible. LOCK TABLE provided for cases when you might need more restrictive locking. For exam
www.eeworm.com/read/476413/6761442

sql dump_postgresql.sql

\connect - postgres CREATE SEQUENCE "poll_comment_seq" start 2 increment 1 maxvalue 2147483647 minvalue 1 cache 1 ; CREATE SEQUENCE "poll_index_seq" start 4 increment 1 maxvalue 2147483647 minvalue 1
www.eeworm.com/read/187332/5224559

makefile

# $Id: Makefile,v 1.5.2.3 2005/09/07 19:21:03 andrei Exp $ # # WARNING: do not run this directly, it should be run by the master Makefile include ../../Makefile.defs auto_gen= NAME=postgres.so # lib
www.eeworm.com/read/187332/5224571

c db_con.c

/* * $Id: db_con.c,v 1.3 2004/04/13 14:58:05 janakj Exp $ * * POSTGRES module, portions of this code were templated using * the mysql module, thus it's similarity. * * * Copyright (C) 2003 Augu
www.eeworm.com/read/187332/5224579

c db_res.c

/* * $Id: db_res.c,v 1.2 2004/02/08 15:30:59 lgfausak Exp $ * * POSTGRES module, portions of this code were templated using * the mysql module, thus it's similarity. * * * Copyright (C) 2003 Au