~ubuntu-branches/ubuntu/hardy/php5/hardy-updates

« back to all changes in this revision

Viewing changes to ext/dbx/dbx_pgsql.h

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-10-09 03:14:32 UTC
  • Revision ID: james.westby@ubuntu.com-20051009031432-kspik3lobxstafv9
Tags: upstream-5.0.5
ImportĀ upstreamĀ versionĀ 5.0.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
   +----------------------------------------------------------------------+
 
3
   | PHP Version 5                                                        |
 
4
   +----------------------------------------------------------------------+
 
5
   | Copyright (c) 1997-2004 The PHP Group                                |
 
6
   +----------------------------------------------------------------------+
 
7
   | This source file is subject to version 3.0 of the PHP license,       |
 
8
   | that is bundled with this package in the file LICENSE, and is        |
 
9
   | available through the world-wide-web at the following url:           |
 
10
   | http://www.php.net/license/3_0.txt.                                  |
 
11
   | If you did not receive a copy of the PHP license and are unable to   |
 
12
   | obtain it through the world-wide-web, please send a note to          |
 
13
   | license@php.net so we can mail you a copy immediately.               |
 
14
   +----------------------------------------------------------------------+
 
15
   | Author : Rui Hirokawa        <hirokawa@php.net>                      |
 
16
   +----------------------------------------------------------------------+
 
17
 */
 
18
 
 
19
/* $Id: dbx_pgsql.h,v 1.14 2004/01/08 17:32:01 sniper Exp $ */
 
20
 
 
21
#ifndef ZEND_DBX_PGSQL_H
 
22
#define ZEND_DBX_PGSQL_H
 
23
 
 
24
#ifndef INIT_FUNC_ARGS
 
25
#include "zend_modules.h"
 
26
#endif
 
27
 
 
28
#include "php.h"
 
29
 
 
30
int dbx_pgsql_connect(zval **rv, zval **host, zval **db, zval **username, zval **password, INTERNAL_FUNCTION_PARAMETERS);
 
31
        /* returns connection handle as resource on success or 0 as long on failure */
 
32
int dbx_pgsql_pconnect(zval **rv, zval **host, zval **db, zval **username, zval **password, INTERNAL_FUNCTION_PARAMETERS);
 
33
        /* returns persistent connection handle as resource on success or 0 as long on failure */
 
34
int dbx_pgsql_close(zval **rv, zval **dbx_handle, INTERNAL_FUNCTION_PARAMETERS);
 
35
        /* returns 1 as long on success or 0 as long on failure */
 
36
int dbx_pgsql_query(zval **rv, zval **dbx_handle, zval **db_name, zval **sql_statement, INTERNAL_FUNCTION_PARAMETERS);
 
37
        /* returns 1 as long or a result identifier as resource on success  or 0 as long on failure */
 
38
int dbx_pgsql_getcolumncount(zval **rv, zval **result_handle, INTERNAL_FUNCTION_PARAMETERS);
 
39
        /* returns column-count as long on success or 0 as long on failure */
 
40
int dbx_pgsql_getcolumnname(zval **rv, zval **result_handle, long column_index, INTERNAL_FUNCTION_PARAMETERS);
 
41
        /* returns column-name as string on success or 0 as long on failure */
 
42
int dbx_pgsql_getcolumntype(zval **rv, zval **result_handle, long column_index, INTERNAL_FUNCTION_PARAMETERS);
 
43
        /* returns column-type as string on success or 0 as long on failure */
 
44
int dbx_pgsql_getrow(zval **rv, zval **result_handle, long row_number, INTERNAL_FUNCTION_PARAMETERS);
 
45
        /* returns array[0..columncount-1] as strings on success or 0 as long on failure */
 
46
int dbx_pgsql_error(zval **rv, zval **dbx_handle, INTERNAL_FUNCTION_PARAMETERS);
 
47
        /* returns string */
 
48
int dbx_pgsql_esc(zval **rv, zval **dbx_handle, zval **string, INTERNAL_FUNCTION_PARAMETERS);
 
49
        /* returns escaped string */
 
50
 
 
51
#endif /* ZEND_DBX_PGSQL_H */
 
52
 
 
53
/*
 
54
 * Local variables:
 
55
 * tab-width: 4
 
56
 * c-basic-offset: 4
 
57
 * End:
 
58
 */