php-src/ext/odbc/php_odbc.h

118 lines
3.6 KiB
C
Raw Normal View History

1999-09-05 13:01:42 +00:00
/*
+----------------------------------------------------------------------+
| PHP Version 5 |
1999-09-05 13:01:42 +00:00
+----------------------------------------------------------------------+
2005-08-03 14:08:58 +00:00
| Copyright (c) 1997-2005 The PHP Group |
1999-09-05 13:01:42 +00:00
+----------------------------------------------------------------------+
| This source file is subject to version 3.0 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.php.net/license/3_0.txt. |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
1999-09-05 13:01:42 +00:00
+----------------------------------------------------------------------+
2003-03-18 12:06:09 +00:00
| Authors: Stig S<EFBFBD>ther Bakken <ssb@php.net> |
1999-09-05 13:01:42 +00:00
| Andreas Karajannis <Andreas.Karajannis@gmd.de> |
2003-07-14 16:11:38 +00:00
| Kevin N. Shallow <kshallow@tampabay.rr.com> (Birdstep) |
1999-09-05 13:01:42 +00:00
+----------------------------------------------------------------------+
*/
1999-09-05 13:01:42 +00:00
/* $Id$ */
#ifndef PHP_ODBC_H
#define PHP_ODBC_H
1999-09-05 13:01:42 +00:00
#if HAVE_UODBC
#define ODBCVER 0x0250
#ifdef ZTS
#include "TSRM.h"
#endif
extern zend_module_entry odbc_module_entry;
1999-09-05 13:01:42 +00:00
#define odbc_module_ptr &odbc_module_entry
2005-04-14 21:17:20 +00:00
#if defined(HAVE_DBMAKER) || defined(PHP_WIN32) || defined(HAVE_IBMDB2) || defined(HAVE_UNIXODBC) || defined(HAVE_BIRDSTEP)
# define PHP_ODBC_HAVE_FETCH_HASH 1
#endif
1999-09-05 13:01:42 +00:00
/* user functions */
PHP_MINIT_FUNCTION(odbc);
PHP_MSHUTDOWN_FUNCTION(odbc);
PHP_RINIT_FUNCTION(odbc);
PHP_RSHUTDOWN_FUNCTION(odbc);
1999-09-05 13:01:42 +00:00
PHP_MINFO_FUNCTION(odbc);
PHP_FUNCTION(odbc_error);
PHP_FUNCTION(odbc_errormsg);
1999-09-05 13:01:42 +00:00
PHP_FUNCTION(odbc_setoption);
PHP_FUNCTION(odbc_autocommit);
PHP_FUNCTION(odbc_close);
PHP_FUNCTION(odbc_close_all);
PHP_FUNCTION(odbc_commit);
PHP_FUNCTION(odbc_connect);
PHP_FUNCTION(odbc_pconnect);
PHP_FUNCTION(odbc_cursor);
#ifdef HAVE_SQLDATASOURCES
PHP_FUNCTION(odbc_data_source);
#endif
1999-09-05 13:01:42 +00:00
PHP_FUNCTION(odbc_do);
PHP_FUNCTION(odbc_exec);
1999-09-05 13:01:42 +00:00
PHP_FUNCTION(odbc_execute);
#ifdef PHP_ODBC_HAVE_FETCH_HASH
PHP_FUNCTION(odbc_fetch_array);
PHP_FUNCTION(odbc_fetch_object);
#endif
1999-09-05 13:01:42 +00:00
PHP_FUNCTION(odbc_fetch_into);
PHP_FUNCTION(odbc_fetch_row);
PHP_FUNCTION(odbc_field_len);
PHP_FUNCTION(odbc_field_scale);
1999-09-05 13:01:42 +00:00
PHP_FUNCTION(odbc_field_name);
PHP_FUNCTION(odbc_field_type);
PHP_FUNCTION(odbc_field_num);
PHP_FUNCTION(odbc_free_result);
#if !defined(HAVE_SOLID) && !defined(HAVE_SOLID_30)
PHP_FUNCTION(odbc_next_result);
#endif
1999-09-05 13:01:42 +00:00
PHP_FUNCTION(odbc_num_fields);
PHP_FUNCTION(odbc_num_rows);
PHP_FUNCTION(odbc_prepare);
PHP_FUNCTION(odbc_result);
PHP_FUNCTION(odbc_result_all);
PHP_FUNCTION(odbc_rollback);
PHP_FUNCTION(odbc_binmode);
PHP_FUNCTION(odbc_longreadlen);
PHP_FUNCTION(odbc_tables);
PHP_FUNCTION(odbc_columns);
#if !defined(HAVE_DBMAKER) && !defined(HAVE_SOLID) && !defined(HAVE_SOLID_35) /* not supported now */
PHP_FUNCTION(odbc_columnprivileges);
PHP_FUNCTION(odbc_tableprivileges);
#endif
#if !defined(HAVE_SOLID) || !defined(HAVE_SOLID_35) /* not supported */
PHP_FUNCTION(odbc_foreignkeys);
PHP_FUNCTION(odbc_procedures);
PHP_FUNCTION(odbc_procedurecolumns);
#endif
PHP_FUNCTION(odbc_gettypeinfo);
PHP_FUNCTION(odbc_primarykeys);
PHP_FUNCTION(odbc_specialcolumns);
PHP_FUNCTION(odbc_statistics);
1999-09-05 13:01:42 +00:00
#else
#define odbc_module_ptr NULL
1999-09-05 13:01:42 +00:00
#endif /* HAVE_UODBC */
#define phpext_odbc_ptr odbc_module_ptr
#endif /* PHP_ODBC_H */
1999-09-05 13:01:42 +00:00
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
*/