代码搜索:postgres
找到约 1,357 项符合「postgres」的源代码
代码结果 1,357
www.eeworm.com/read/184888/5244236
c db_val.c
/*
* $Id: db_val.c,v 1.7 2006/06/01 09:41:31 bogdan_iancu Exp $
*
* POSTGRES module, portions of this code were templated using
* the mysql module, thus it's similarity.
*
* Copyright (C) 2003 A
www.eeworm.com/read/184888/5244237
h aug_debug.h
/*
* $Id: aug_debug.h,v 1.2 2005/07/01 14:52:35 bogdan_iancu Exp $
*
* POSTGRES module, portions of this code were templated using
* the mysql module, thus it's similarity.
*
* Copyright (C) 200
www.eeworm.com/read/183001/5258728
in dict_tmpl.c.in
/*
* example of dictionary
* Teodor Sigaev
*/
#include
#include
#include
#include "postgres.h"
#include "dict.h"
#include "common.h"
#include
www.eeworm.com/read/183001/5260067
h ecpglib.h
/*
* this is a small part of c.h since we don't want to leak all postgres
* definitions into ecpg programs
*/
#ifndef _ECPGLIB_H
#define _ECPGLIB_H
#include "libpq-fe.h"
#include "ecpgtype.h"
#in
www.eeworm.com/read/183001/5260081
c common.c
#include "postgres_fe.h"
#include "extern.h"
/* Return value is zero-filled. */
char *
pgtypes_alloc(long size)
{
char *new = (char *) calloc(1L, size);
if (!new)
errno = ENOMEM;
return (ne
www.eeworm.com/read/341356/3252525
sh convert_db_to_unicode.sh
#!/bin/bash
if [ "`id -u`" -ne "0" ]; then
echo "You must run this utility as root!"
exit 1
fi
if [ -z "$3" ]; then
echo "usage: $0 [sql_file]"
exi
www.eeworm.com/read/376006/2717721
h ecpglib.h
/*
* this is a small part of c.h since we don't want to leak all postgres
* definitions into ecpg programs
* $PostgreSQL: pgsql/src/interfaces/ecpg/include/ecpglib.h,v 1.74.2.2 2008/03/20 16:30:14
www.eeworm.com/read/149795/5697245
c db_mod.c
/*
* $Id: db_mod.c,v 1.7 2004/08/24 09:00:35 janakj Exp $
*
* Postgres module interface
*
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of ser, a free SIP server.
*
* ser is fre
www.eeworm.com/read/120487/6071952
l parser.l
%{
#include "postgres.h"
#include "deflex.h"
#include "parser.h"
#include "common.h"
/* Avoid exit() on fatal scanner errors */
#define fprintf(file, fmt, msg) ts_error(ERROR, fmt, msg)
char *toke
www.eeworm.com/read/120487/6072174
c port.c
#include "postgres.h"
#ifndef _POSIX_SOURCE
#include "libc.h"
#else
#include
#endif
#include
void
putenv(char *name)
{
extern char **environ;
static int was_mallocated