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

« back to all changes in this revision

Viewing changes to ext/dbx/dbx_sybasect.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
   | dbx module version 1.0                                               |
 
8
   +----------------------------------------------------------------------+
 
9
   | Copyright (c) 2001-2003 Guidance Rotterdam BV                        |
 
10
   +----------------------------------------------------------------------+
 
11
   | This source file is subject to version 3.0 of the PHP license,       |
 
12
   | that is bundled with this package in the file LICENSE, and is        |
 
13
   | available through the world-wide-web at the following url:           |
 
14
   | http://www.php.net/license/3_0.txt.                                  |
 
15
   | If you did not receive a copy of the PHP license and are unable to   |
 
16
   | obtain it through the world-wide-web, please send a note to          |
 
17
   | license@php.net so we can mail you a copy immediately.               |
 
18
   +----------------------------------------------------------------------+
 
19
   | Author : Marc Boeren         <marc@guidance.nl>                      |
 
20
   +----------------------------------------------------------------------+
 
21
*/
 
22
 
 
23
/* $Id: dbx_sybasect.h,v 1.7 2004/01/08 17:32:01 sniper Exp $ */
 
24
 
 
25
#ifndef ZEND_DBX_SYBASECT_H
 
26
#define ZEND_DBX_SYBASECT_H
 
27
 
 
28
#ifndef INIT_FUNC_ARGS
 
29
#include "zend_modules.h"
 
30
#endif
 
31
 
 
32
#include "php.h"
 
33
 
 
34
int dbx_sybasect_connect(zval **rv, zval **host, zval **db, zval **username, zval **password, INTERNAL_FUNCTION_PARAMETERS);
 
35
        /* returns connection handle as resource on success or 0 as long on failure */
 
36
int dbx_sybasect_pconnect(zval **rv, zval **host, zval **db, zval **username, zval **password, INTERNAL_FUNCTION_PARAMETERS);
 
37
        /* returns persistent connection handle as resource on success or 0 as long on failure */
 
38
int dbx_sybasect_close(zval **rv, zval **dbx_handle, INTERNAL_FUNCTION_PARAMETERS);
 
39
        /* returns 1 as long on success or 0 as long on failure */
 
40
int dbx_sybasect_query(zval **rv, zval **dbx_handle, zval **db_name, zval **sql_statement, INTERNAL_FUNCTION_PARAMETERS);
 
41
        /* returns 1 as long or a result identifier as resource on success  or 0 as long on failure */
 
42
int dbx_sybasect_getcolumncount(zval **rv, zval **result_handle, INTERNAL_FUNCTION_PARAMETERS);
 
43
        /* returns column-count as long on success or 0 as long on failure */
 
44
int dbx_sybasect_getcolumnname(zval **rv, zval **result_handle, long column_index, INTERNAL_FUNCTION_PARAMETERS);
 
45
        /* returns column-name as string on success or 0 as long on failure */
 
46
int dbx_sybasect_getcolumntype(zval **rv, zval **result_handle, long column_index, INTERNAL_FUNCTION_PARAMETERS);
 
47
        /* returns column-type as string on success or 0 as long on failure */
 
48
int dbx_sybasect_getrow(zval **rv, zval **result_handle, long row_number, INTERNAL_FUNCTION_PARAMETERS);
 
49
        /* returns array[0..columncount-1] as strings on success or 0 as long on failure */
 
50
int dbx_sybasect_error(zval **rv, zval **dbx_handle, INTERNAL_FUNCTION_PARAMETERS);
 
51
        /* returns string */
 
52
int dbx_sybasect_esc(zval **rv, zval **dbx_handle, zval **string, INTERNAL_FUNCTION_PARAMETERS);
 
53
        /* returns escaped string */
 
54
 
 
55
#endif /* ZEND_DBX_SYBASECT_H */
 
56
 
 
57
/*
 
58
 * Local variables:
 
59
 * tab-width: 4
 
60
 * c-basic-offset: 4
 
61
 * End:
 
62
 */