1999-04-22 10:48:28 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
2004-01-09 01:33:29 +08:00
|
|
|
| PHP Version 5 |
|
1999-04-22 10:48:28 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2012-01-01 21:15:04 +08:00
|
|
|
| Copyright (c) 1997-2012 The PHP Group |
|
1999-04-22 10:48:28 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2006-01-01 20:51:34 +08:00
|
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
2000-03-13 03:44:23 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
2006-01-01 20:51:34 +08:00
|
|
|
| http://www.php.net/license/3_01.txt |
|
2000-03-13 03:44:23 +08:00
|
|
|
| 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-04-22 10:48:28 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2001-01-04 19:15:35 +08:00
|
|
|
| Authors: Jouni Ahto <jouni.ahto@exdec.fi> |
|
|
|
|
| Andrew Avdeev <andy@simgts.mv.ru> |
|
2003-08-16 00:13:51 +08:00
|
|
|
| Ard Biesheuvel <a.k.biesheuvel@its.tudelft.nl> |
|
1999-04-22 10:48:28 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
2000-07-03 08:41:19 +08:00
|
|
|
#ifndef PHP_INTERBASE_H
|
|
|
|
#define PHP_INTERBASE_H
|
1999-04-22 10:48:28 +08:00
|
|
|
|
1999-12-18 04:55:31 +08:00
|
|
|
extern zend_module_entry ibase_module_entry;
|
2000-03-13 03:44:23 +08:00
|
|
|
#define phpext_interbase_ptr &ibase_module_entry
|
|
|
|
|
2001-07-30 09:56:43 +08:00
|
|
|
PHP_MINIT_FUNCTION(ibase);
|
|
|
|
PHP_RINIT_FUNCTION(ibase);
|
|
|
|
PHP_MSHUTDOWN_FUNCTION(ibase);
|
|
|
|
PHP_RSHUTDOWN_FUNCTION(ibase);
|
1999-08-02 23:02:52 +08:00
|
|
|
PHP_MINFO_FUNCTION(ibase);
|
|
|
|
|
1999-05-21 18:06:25 +08:00
|
|
|
PHP_FUNCTION(ibase_connect);
|
|
|
|
PHP_FUNCTION(ibase_pconnect);
|
|
|
|
PHP_FUNCTION(ibase_close);
|
2003-08-05 21:17:16 +08:00
|
|
|
PHP_FUNCTION(ibase_drop_db);
|
1999-05-21 18:06:25 +08:00
|
|
|
PHP_FUNCTION(ibase_query);
|
|
|
|
PHP_FUNCTION(ibase_fetch_row);
|
2002-03-15 23:26:01 +08:00
|
|
|
PHP_FUNCTION(ibase_fetch_assoc);
|
2000-03-13 03:44:23 +08:00
|
|
|
PHP_FUNCTION(ibase_fetch_object);
|
1999-05-21 18:06:25 +08:00
|
|
|
PHP_FUNCTION(ibase_free_result);
|
2003-08-07 01:51:46 +08:00
|
|
|
PHP_FUNCTION(ibase_name_result);
|
1999-05-21 18:06:25 +08:00
|
|
|
PHP_FUNCTION(ibase_prepare);
|
|
|
|
PHP_FUNCTION(ibase_execute);
|
|
|
|
PHP_FUNCTION(ibase_free_query);
|
2004-05-12 22:29:42 +08:00
|
|
|
|
1999-05-21 18:06:25 +08:00
|
|
|
PHP_FUNCTION(ibase_timefmt);
|
2004-05-12 22:29:42 +08:00
|
|
|
|
2003-09-24 04:58:14 +08:00
|
|
|
PHP_FUNCTION(ibase_gen_id);
|
2000-03-13 03:44:23 +08:00
|
|
|
PHP_FUNCTION(ibase_num_fields);
|
2003-08-11 04:53:19 +08:00
|
|
|
PHP_FUNCTION(ibase_num_params);
|
2003-08-16 09:58:29 +08:00
|
|
|
#if abies_0
|
2003-08-11 00:21:26 +08:00
|
|
|
PHP_FUNCTION(ibase_num_rows);
|
2003-08-16 09:58:29 +08:00
|
|
|
#endif
|
2003-08-11 00:21:26 +08:00
|
|
|
PHP_FUNCTION(ibase_affected_rows);
|
2000-03-13 03:44:23 +08:00
|
|
|
PHP_FUNCTION(ibase_field_info);
|
2003-08-11 04:53:19 +08:00
|
|
|
PHP_FUNCTION(ibase_param_info);
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
PHP_FUNCTION(ibase_trans);
|
|
|
|
PHP_FUNCTION(ibase_commit);
|
|
|
|
PHP_FUNCTION(ibase_rollback);
|
2003-08-07 01:51:46 +08:00
|
|
|
PHP_FUNCTION(ibase_commit_ret);
|
2004-05-12 22:29:42 +08:00
|
|
|
PHP_FUNCTION(ibase_rollback_ret);
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
PHP_FUNCTION(ibase_blob_create);
|
|
|
|
PHP_FUNCTION(ibase_blob_add);
|
|
|
|
PHP_FUNCTION(ibase_blob_cancel);
|
|
|
|
PHP_FUNCTION(ibase_blob_open);
|
|
|
|
PHP_FUNCTION(ibase_blob_get);
|
|
|
|
PHP_FUNCTION(ibase_blob_close);
|
|
|
|
PHP_FUNCTION(ibase_blob_echo);
|
|
|
|
PHP_FUNCTION(ibase_blob_info);
|
|
|
|
PHP_FUNCTION(ibase_blob_import);
|
2004-05-12 22:29:42 +08:00
|
|
|
|
2002-01-27 23:31:15 +08:00
|
|
|
PHP_FUNCTION(ibase_add_user);
|
|
|
|
PHP_FUNCTION(ibase_modify_user);
|
|
|
|
PHP_FUNCTION(ibase_delete_user);
|
2003-09-04 22:18:39 +08:00
|
|
|
|
2004-02-02 00:13:07 +08:00
|
|
|
PHP_FUNCTION(ibase_service_attach);
|
|
|
|
PHP_FUNCTION(ibase_service_detach);
|
|
|
|
PHP_FUNCTION(ibase_backup);
|
|
|
|
PHP_FUNCTION(ibase_restore);
|
2004-02-02 21:49:48 +08:00
|
|
|
PHP_FUNCTION(ibase_maintain_db);
|
|
|
|
PHP_FUNCTION(ibase_db_info);
|
|
|
|
PHP_FUNCTION(ibase_server_info);
|
2004-05-12 22:29:42 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
PHP_FUNCTION(ibase_errmsg);
|
2003-08-08 19:04:12 +08:00
|
|
|
PHP_FUNCTION(ibase_errcode);
|
2000-03-13 03:44:23 +08:00
|
|
|
|
2003-08-14 18:55:02 +08:00
|
|
|
PHP_FUNCTION(ibase_wait_event);
|
2003-08-15 08:06:07 +08:00
|
|
|
PHP_FUNCTION(ibase_set_event_handler);
|
2003-08-16 00:13:51 +08:00
|
|
|
PHP_FUNCTION(ibase_free_event_handler);
|
2003-08-14 18:55:02 +08:00
|
|
|
|
1999-04-22 10:48:28 +08:00
|
|
|
#else
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
#define phpext_interbase_ptr NULL
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-07-03 08:41:19 +08:00
|
|
|
#endif /* PHP_INTERBASE_H */
|
1999-04-22 10:48:28 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* End:
|
|
|
|
*/
|