1999-04-22 10:48:28 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
1999-07-16 21:13:16 +08:00
|
|
|
| PHP version 4.0 |
|
1999-04-22 10:48:28 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2000-01-01 09:32:05 +08:00
|
|
|
| Copyright (c) 1997, 1998, 1999, 2000 The PHP Group |
|
1999-04-22 10:48:28 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2000-02-20 07:21:46 +08:00
|
|
|
| This source file is subject to version 2.01 of the PHP license, |
|
1999-07-16 21:13:16 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
|
|
| available at through the world-wide-web at |
|
2000-02-20 07:21:46 +08:00
|
|
|
| http://www.php.net/license/2_01.txt. |
|
1999-07-16 21:13:16 +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
|
|
|
+----------------------------------------------------------------------+
|
2000-03-13 03:44:23 +08:00
|
|
|
| Authors: Jouni Ahto <jah@mork.net> |
|
|
|
|
| Andrew Avdeev <andy@rsc.mv.ru> |
|
1999-04-22 10:48:28 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
/* TODO: Arrays, roles?
|
|
|
|
A lot... */
|
|
|
|
|
|
|
|
/*
|
|
|
|
Changes:
|
|
|
|
1999-09-21: Ivo Panacek <ivop@regionet.cz>
|
|
|
|
- added COMPILE_DL section
|
|
|
|
- more verbose php_info_ibase function
|
|
|
|
mostly stolen from pgsql.c for now
|
|
|
|
1999-10-05: Ivo Panacek <ivop@regionet.cz>
|
|
|
|
- safe rinit/rfinish: check for NULL so
|
|
|
|
rfinish could be called repeatedly
|
|
|
|
emalloc & co. replaced with malloc & co.
|
|
|
|
*/
|
1999-04-22 10:48:28 +08:00
|
|
|
|
|
|
|
#include "php.h"
|
2000-03-13 03:44:23 +08:00
|
|
|
#include "php_ini.h"
|
|
|
|
#include "ext/standard/php_standard.h"
|
|
|
|
#include "php_globals.h"
|
1999-12-05 03:19:57 +08:00
|
|
|
#include "php_interbase.h"
|
1999-04-22 10:48:28 +08:00
|
|
|
|
|
|
|
#if HAVE_IBASE
|
|
|
|
#include <ibase.h>
|
|
|
|
#include <time.h>
|
2000-03-13 03:44:23 +08:00
|
|
|
#include "ext/standard/fsock.h"
|
2000-04-07 00:57:33 +08:00
|
|
|
#include "ext/standard/info.h"
|
2000-04-30 13:46:04 +08:00
|
|
|
|
2000-05-10 04:30:23 +08:00
|
|
|
#ifdef SQL_INT64
|
|
|
|
#include <math.h>
|
|
|
|
#endif
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
/*
|
2000-05-12 16:37:03 +08:00
|
|
|
#define IBDEBUG(a) printf("::: %s (%d)\n", a, __LINE__);
|
2000-03-13 03:44:23 +08:00
|
|
|
*/
|
2000-04-30 13:46:04 +08:00
|
|
|
#define IBDEBUG(a)
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
#define SAFE_STRING(s) ((s)?(s):"")
|
|
|
|
|
1999-04-22 10:48:28 +08:00
|
|
|
/* {{{ extension definition structures */
|
|
|
|
function_entry ibase_functions[] = {
|
2000-03-13 03:44:23 +08:00
|
|
|
PHP_FE(ibase_connect, NULL)
|
|
|
|
PHP_FE(ibase_pconnect, NULL)
|
|
|
|
PHP_FE(ibase_close, NULL)
|
|
|
|
PHP_FE(ibase_query, NULL)
|
|
|
|
PHP_FE(ibase_fetch_row, NULL)
|
|
|
|
PHP_FE(ibase_fetch_object, NULL)
|
|
|
|
PHP_FE(ibase_free_result, NULL)
|
|
|
|
PHP_FE(ibase_prepare, NULL)
|
|
|
|
PHP_FE(ibase_execute, NULL)
|
|
|
|
PHP_FE(ibase_free_query, NULL)
|
|
|
|
PHP_FE(ibase_timefmt, NULL)
|
|
|
|
|
|
|
|
PHP_FE(ibase_num_fields, NULL)
|
|
|
|
PHP_FE(ibase_field_info, NULL)
|
|
|
|
|
|
|
|
PHP_FE(ibase_trans, NULL)
|
|
|
|
PHP_FE(ibase_commit, NULL)
|
|
|
|
PHP_FE(ibase_rollback, NULL)
|
|
|
|
|
|
|
|
PHP_FE(ibase_blob_info, NULL)
|
|
|
|
PHP_FE(ibase_blob_create, NULL)
|
|
|
|
PHP_FE(ibase_blob_add, NULL)
|
|
|
|
PHP_FE(ibase_blob_cancel, NULL)
|
|
|
|
PHP_FE(ibase_blob_close, NULL)
|
|
|
|
PHP_FE(ibase_blob_open, NULL)
|
|
|
|
PHP_FE(ibase_blob_get, NULL)
|
|
|
|
PHP_FE(ibase_blob_echo, NULL)
|
|
|
|
PHP_FE(ibase_blob_import, NULL)
|
|
|
|
PHP_FE(ibase_errmsg, NULL)
|
1999-04-22 10:48:28 +08:00
|
|
|
{NULL, NULL, NULL}
|
|
|
|
};
|
|
|
|
|
1999-12-18 04:55:31 +08:00
|
|
|
zend_module_entry ibase_module_entry =
|
1999-04-22 10:48:28 +08:00
|
|
|
{
|
2000-03-07 02:44:01 +08:00
|
|
|
"interbase",
|
1999-04-22 10:48:28 +08:00
|
|
|
ibase_functions,
|
1999-08-02 23:02:52 +08:00
|
|
|
PHP_MINIT(ibase),
|
2000-03-13 03:44:23 +08:00
|
|
|
PHP_MSHUTDOWN(ibase),
|
1999-08-02 23:02:52 +08:00
|
|
|
PHP_RINIT(ibase),
|
2000-04-18 10:52:45 +08:00
|
|
|
PHP_RSHUTDOWN(ibase),
|
1999-08-02 23:02:52 +08:00
|
|
|
PHP_MINFO(ibase),
|
1999-04-22 10:48:28 +08:00
|
|
|
STANDARD_MODULE_PROPERTIES
|
|
|
|
};
|
|
|
|
|
2000-05-02 08:44:35 +08:00
|
|
|
#if defined(COMPILE_DL) || defined(COMPILE_DL_INTERBASE)
|
2000-03-13 03:44:23 +08:00
|
|
|
#include "dl/phpdl.h"
|
2000-05-02 08:30:36 +08:00
|
|
|
ZEND_GET_MODULE(ibase)
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
#define DL_MALLOC(size) malloc(size)
|
|
|
|
#define DL_STRDUP(str) strdup(str)
|
|
|
|
#define DL_FREE(ptr) free(ptr)
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
#else
|
|
|
|
|
|
|
|
#define DL_MALLOC(size) emalloc(size)
|
|
|
|
#define DL_STRDUP(str) estrdup(str)
|
|
|
|
#define DL_FREE(ptr) efree(ptr)
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
#endif
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
#ifdef ZTS
|
|
|
|
int ibase_globals_id;
|
1999-04-22 10:48:28 +08:00
|
|
|
#else
|
2000-03-13 03:44:23 +08:00
|
|
|
PHP_IBASE_API php_ibase_globals ibase_globals;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ internal macros and structures */
|
|
|
|
|
|
|
|
#define IB_STATUS (IBG(status))
|
|
|
|
|
|
|
|
/* db_handle and transaction handle keep in one variable
|
2000-04-30 13:46:04 +08:00
|
|
|
link = db_handle * IBASE_TRANS_ON_LINK + trans_handle
|
2000-03-13 03:44:23 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* get link and transaction from long argument
|
|
|
|
*/
|
|
|
|
#define GET_LINK_TRANS(link_id, ib_link, trans_n) { \
|
|
|
|
int type; \
|
|
|
|
trans_n = link_id % IBASE_TRANS_ON_LINK; \
|
|
|
|
link_id /= IBASE_TRANS_ON_LINK; \
|
|
|
|
ib_link = (ibase_db_link *) zend_list_find(link_id, &type); \
|
|
|
|
if (type!=IBG(le_link) && type!=IBG(le_plink)) { \
|
|
|
|
_php_ibase_module_error("%d is not link or transaction index",link_id); \
|
|
|
|
RETURN_FALSE; \
|
|
|
|
}}
|
2000-04-18 10:52:45 +08:00
|
|
|
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
#define RESET_ERRMSG { IBG(errmsg)[0] = '\0';}
|
|
|
|
|
|
|
|
#define TEST_ERRMSG ( IBG(errmsg)[0] != '\0')
|
|
|
|
|
|
|
|
/* sql variables union
|
2000-04-30 13:46:04 +08:00
|
|
|
used for convert and binding input variables
|
2000-03-13 03:44:23 +08:00
|
|
|
*/
|
|
|
|
typedef struct {
|
|
|
|
union {
|
|
|
|
short sval;
|
|
|
|
float fval;
|
|
|
|
ISC_QUAD qval;
|
2000-05-12 11:02:14 +08:00
|
|
|
ISC_TIMESTAMP tsval;
|
|
|
|
ISC_DATE dtval;
|
|
|
|
ISC_TIME tmval;
|
2000-03-13 03:44:23 +08:00
|
|
|
} val;
|
|
|
|
short sqlind;
|
|
|
|
} BIND_BUF;
|
|
|
|
|
|
|
|
|
|
|
|
/* get blob identifier from argument
|
2000-04-30 13:46:04 +08:00
|
|
|
on empty unset argument ib_blob set to NULL
|
|
|
|
*/
|
2000-03-13 03:44:23 +08:00
|
|
|
#define GET_BLOB_ID_ARG(blob_arg, ib_blob)\
|
|
|
|
{\
|
|
|
|
if (blob_arg->type == IS_STRING && blob_arg->value.str.len == 0) {\
|
|
|
|
ib_blob = NULL;\
|
|
|
|
} else if (blob_arg->type != IS_STRING\
|
|
|
|
|| blob_arg->value.str.len != sizeof(ibase_blob_handle)\
|
|
|
|
|| ((ibase_blob_handle *)(blob_arg->value.str.val))->bl_handle != 0){\
|
|
|
|
_php_ibase_module_error("invalid blob id");\
|
|
|
|
RETURN_FALSE;\
|
|
|
|
} else {\
|
|
|
|
ib_blob = (ibase_blob_handle *)blob_arg->value.str.val;\
|
|
|
|
}\
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* get blob handle from argument
|
2000-04-30 13:46:04 +08:00
|
|
|
note: blob already open when handle active
|
|
|
|
*/
|
2000-03-13 03:44:23 +08:00
|
|
|
#define GET_BLOB_HANDLE_ARG(blob_arg, blob_ptr) \
|
|
|
|
{ \
|
|
|
|
int type; \
|
|
|
|
convert_to_long(blob_arg); \
|
|
|
|
blob_ptr = (ibase_blob_handle *) zend_list_find(blob_arg->value.lval, &type); \
|
|
|
|
if (type!=IBG(le_blob)) { \
|
|
|
|
_php_ibase_module_error("%d is not blob handle",blob_arg->value.lval); \
|
|
|
|
RETURN_FALSE; \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
|
|
|
/* blob information struct */
|
|
|
|
typedef struct {
|
|
|
|
ISC_LONG max_segment; /* Length of longest segment */
|
|
|
|
ISC_LONG num_segments; /* Total number of segments */
|
|
|
|
ISC_LONG total_length; /* Total length of blob */
|
|
|
|
int bl_stream; /* blob is stream ? */
|
|
|
|
} IBASE_BLOBINFO;
|
|
|
|
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* error handling ---------------------------- */
|
|
|
|
|
|
|
|
/* {{{ proto string ibase_errmsg(void)
|
|
|
|
Return error message */
|
|
|
|
PHP_FUNCTION(ibase_errmsg)
|
|
|
|
{
|
|
|
|
char *errmsg = IBG(errmsg);
|
|
|
|
IBLS_FETCH();
|
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
if (errmsg[0]) {
|
2000-03-13 03:44:23 +08:00
|
|
|
RETURN_STRING(errmsg,1);
|
|
|
|
}
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
1999-04-22 10:48:28 +08:00
|
|
|
/* }}} */
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
/* {{{ _php_ibase_error()
|
|
|
|
print interbase error and save it for ibase_errmsg() */
|
|
|
|
static void _php_ibase_error(void)
|
1999-04-22 10:48:28 +08:00
|
|
|
{
|
2000-03-13 03:44:23 +08:00
|
|
|
char *s, *errmsg = IBG(errmsg);
|
|
|
|
ISC_STATUS *statusp = IB_STATUS;
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
s = errmsg;
|
2000-04-18 10:52:45 +08:00
|
|
|
while ((s - errmsg) < MAX_ERRMSG - (IBASE_MSGSIZE + 2) && isc_interprete(s, &statusp)) {
|
2000-03-13 03:44:23 +08:00
|
|
|
strcat(errmsg, " ");
|
|
|
|
s = errmsg + strlen(errmsg);
|
|
|
|
}
|
2000-04-30 13:46:04 +08:00
|
|
|
php_error(E_WARNING, "InterBase: %s", errmsg);
|
2000-03-13 03:44:23 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ _php_ibase_module_error()
|
2000-04-18 10:52:45 +08:00
|
|
|
print php interbase module error and save it for ibase_errmsg() */
|
2000-03-13 03:44:23 +08:00
|
|
|
static void _php_ibase_module_error(char *msg, ...)
|
|
|
|
{
|
|
|
|
char *errmsg = IBG(errmsg);
|
|
|
|
va_list ap;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
va_start(ap, msg);
|
|
|
|
len = vsnprintf(errmsg, MAX_ERRMSG - 1, msg, ap);
|
|
|
|
va_end(ap);
|
|
|
|
errmsg[len] = '\0';
|
|
|
|
|
|
|
|
php_error(E_WARNING, "InterBase module: %s",errmsg);
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
/* destructors ---------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ _php_ibase_free_xsqlda() */
|
|
|
|
/* not actual destructor ... */
|
|
|
|
static void _php_ibase_free_xsqlda(XSQLDA *sqlda)
|
1999-04-22 10:48:28 +08:00
|
|
|
{
|
2000-03-13 03:44:23 +08:00
|
|
|
int i;
|
|
|
|
XSQLVAR *var;
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-04-30 13:46:04 +08:00
|
|
|
IBDEBUG("Free XSQLDA?");
|
2000-04-18 10:52:45 +08:00
|
|
|
if (sqlda) {
|
2000-04-30 13:46:04 +08:00
|
|
|
IBDEBUG("Freeing XSQLDA...");
|
2000-03-13 03:44:23 +08:00
|
|
|
var = sqlda->sqlvar;
|
|
|
|
for (i = 0; i < sqlda->sqld; i++, var++) {
|
|
|
|
efree(var->sqldata);
|
|
|
|
if(var->sqlind)
|
|
|
|
efree(var->sqlind);
|
|
|
|
}
|
|
|
|
efree(sqlda);
|
|
|
|
}
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
/* {{{ _php_ibase_commit_link() */
|
|
|
|
static void _php_ibase_commit_link(ibase_db_link *link)
|
1999-04-22 10:48:28 +08:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
if (link->trans[0] != NULL) { /* commit default */
|
2000-04-30 13:46:04 +08:00
|
|
|
IBDEBUG("Committing default transaction...");
|
2000-03-13 03:44:23 +08:00
|
|
|
if (isc_commit_transaction(IB_STATUS, &link->trans[0])) {
|
|
|
|
_php_ibase_error();
|
|
|
|
}
|
|
|
|
link->trans[0] = NULL;
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
2000-03-13 03:44:23 +08:00
|
|
|
for (i = 1; i < IBASE_TRANS_ON_LINK; i++) {
|
|
|
|
if (link->trans[i] != NULL) {
|
2000-04-30 13:46:04 +08:00
|
|
|
IBDEBUG("Rolling back other transactions...");
|
2000-03-13 03:44:23 +08:00
|
|
|
if (isc_rollback_transaction(IB_STATUS, &link->trans[i])) {
|
|
|
|
_php_ibase_error();
|
|
|
|
}
|
|
|
|
link->trans[i] = NULL;
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
/* {{{ _php_ibase_close_link() */
|
|
|
|
static void _php_ibase_close_link(ibase_db_link *link)
|
1999-04-22 10:48:28 +08:00
|
|
|
{
|
2000-03-13 03:44:23 +08:00
|
|
|
_php_ibase_commit_link(link);
|
2000-04-30 13:46:04 +08:00
|
|
|
IBDEBUG("Closing normal link...");
|
2000-03-13 03:44:23 +08:00
|
|
|
isc_detach_database(IB_STATUS, &link->link);
|
|
|
|
IBG(num_links)--;
|
|
|
|
efree(link);
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ _php_ibase_close_plink() */
|
|
|
|
static void _php_ibase_close_plink(ibase_db_link *link)
|
|
|
|
{
|
|
|
|
_php_ibase_commit_link(link);
|
2000-04-30 13:46:04 +08:00
|
|
|
IBDEBUG("Closing permanent link...");
|
2000-03-13 03:44:23 +08:00
|
|
|
isc_detach_database(IB_STATUS, &link->link);
|
|
|
|
IBG(num_persistent)--;
|
|
|
|
IBG(num_links)--;
|
|
|
|
free(link);
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ _php_ibase_free_result() */
|
|
|
|
static void _php_ibase_free_result(ibase_result *ib_result)
|
|
|
|
{
|
2000-05-12 16:37:03 +08:00
|
|
|
IBDEBUG("Freeing result...");
|
2000-03-13 03:44:23 +08:00
|
|
|
if (ib_result){
|
|
|
|
_php_ibase_free_xsqlda(ib_result->out_sqlda);
|
|
|
|
if (ib_result->drop_stmt && ib_result->stmt) {
|
2000-04-30 13:46:04 +08:00
|
|
|
IBDEBUG("Dropping statement handle (free_result)...");
|
2000-04-18 10:52:45 +08:00
|
|
|
if (isc_dsql_free_statement(IB_STATUS, &ib_result->stmt, DSQL_drop)) {
|
2000-03-13 03:44:23 +08:00
|
|
|
_php_ibase_error();
|
|
|
|
}
|
|
|
|
} else {
|
2000-04-30 13:46:04 +08:00
|
|
|
IBDEBUG("Closing statement handle...");
|
2000-04-18 10:52:45 +08:00
|
|
|
if (isc_dsql_free_statement(IB_STATUS, &ib_result->stmt, DSQL_close)) {
|
2000-03-13 03:44:23 +08:00
|
|
|
_php_ibase_error();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ib_result->out_array) {
|
|
|
|
efree(ib_result->out_array);
|
|
|
|
}
|
|
|
|
efree(ib_result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
/* {{{ _php_ibase_free_query() */
|
|
|
|
static void _php_ibase_free_query(ibase_query *ib_query)
|
|
|
|
{
|
2000-05-12 16:37:03 +08:00
|
|
|
IBDEBUG("Freeing query...");
|
2000-04-18 10:52:45 +08:00
|
|
|
if (ib_query) {
|
2000-03-13 03:44:23 +08:00
|
|
|
if (ib_query->in_sqlda) {
|
|
|
|
efree(ib_query->in_sqlda);
|
|
|
|
}
|
|
|
|
if (ib_query->out_sqlda) {
|
|
|
|
efree(ib_query->out_sqlda);
|
|
|
|
}
|
|
|
|
if (ib_query->stmt) {
|
2000-04-30 13:46:04 +08:00
|
|
|
IBDEBUG("Dropping statement handle (free_query)...");
|
2000-03-13 03:44:23 +08:00
|
|
|
if (isc_dsql_free_statement(IB_STATUS, &ib_query->stmt, DSQL_drop)){
|
|
|
|
_php_ibase_error();
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
|
|
|
}
|
2000-03-13 03:44:23 +08:00
|
|
|
if (ib_query->in_array) {
|
|
|
|
efree(ib_query->in_array);
|
|
|
|
}
|
|
|
|
if (ib_query->out_array) {
|
|
|
|
efree(ib_query->out_array);
|
|
|
|
}
|
|
|
|
efree(ib_query);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ _php_ibase_free_blob() */
|
|
|
|
static void _php_ibase_free_blob(ibase_blob_handle *ib_blob)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (ib_blob->bl_handle != NULL) { /* blob open*/
|
|
|
|
if (isc_cancel_blob(IB_STATUS, &ib_blob->bl_handle)) {
|
|
|
|
_php_ibase_error();
|
|
|
|
}
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
2000-03-13 03:44:23 +08:00
|
|
|
efree(ib_blob);
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
|
1999-04-22 10:48:28 +08:00
|
|
|
/* {{{ startup, shutdown and info functions */
|
2000-04-18 10:52:45 +08:00
|
|
|
PHP_INI_BEGIN()
|
|
|
|
STD_PHP_INI_BOOLEAN("ibase.allow_persistent", "1", PHP_INI_SYSTEM, OnUpdateInt, allow_persistent, php_ibase_globals, ibase_globals)
|
|
|
|
STD_PHP_INI_ENTRY_EX("ibase.max_persistent", "-1", PHP_INI_SYSTEM, OnUpdateInt, max_persistent, php_ibase_globals, ibase_globals, display_link_numbers)
|
|
|
|
STD_PHP_INI_ENTRY_EX("ibase.max_links", "-1", PHP_INI_SYSTEM, OnUpdateInt, max_links, php_ibase_globals, ibase_globals, display_link_numbers)
|
|
|
|
STD_PHP_INI_ENTRY("ibase.default_user", NULL, PHP_INI_ALL, OnUpdateString, default_user, php_ibase_globals, ibase_globals)
|
|
|
|
STD_PHP_INI_ENTRY("ibase.default_password", NULL, PHP_INI_ALL, OnUpdateString, default_password, php_ibase_globals, ibase_globals)
|
2000-05-12 11:02:14 +08:00
|
|
|
STD_PHP_INI_ENTRY("ibase.timestampformat", "%m/%d/%Y %H:%M:%S", PHP_INI_ALL, OnUpdateString, cfg_timestampformat, php_ibase_globals, ibase_globals)
|
|
|
|
STD_PHP_INI_ENTRY("ibase.dateformat", "%m/%d/%Y", PHP_INI_ALL, OnUpdateString, cfg_dateformat, php_ibase_globals, ibase_globals)
|
|
|
|
STD_PHP_INI_ENTRY("ibase.timeformat", "%H:%M:%S", PHP_INI_ALL, OnUpdateString, cfg_timeformat, php_ibase_globals, ibase_globals)
|
2000-04-18 10:52:45 +08:00
|
|
|
PHP_INI_END()
|
|
|
|
|
1999-08-02 23:02:52 +08:00
|
|
|
PHP_MINIT_FUNCTION(ibase)
|
1999-04-22 10:48:28 +08:00
|
|
|
{
|
2000-03-13 03:44:23 +08:00
|
|
|
IBLS_FETCH();
|
2000-04-30 13:46:04 +08:00
|
|
|
|
2000-05-12 11:02:14 +08:00
|
|
|
IBG(timestampformat) = NULL;
|
|
|
|
IBG(dateformat) = NULL;
|
2000-03-13 03:44:23 +08:00
|
|
|
IBG(timeformat) = NULL;
|
|
|
|
IBG(errmsg) = NULL;
|
|
|
|
|
|
|
|
IBG(num_persistent) = 0;
|
2000-04-18 10:52:45 +08:00
|
|
|
|
|
|
|
REGISTER_INI_ENTRIES();
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
IBG(le_result) = register_list_destructors(_php_ibase_free_result, NULL);
|
|
|
|
IBG(le_query) = register_list_destructors(_php_ibase_free_query, NULL);
|
|
|
|
IBG(le_blob) = register_list_destructors(_php_ibase_free_blob, NULL);
|
|
|
|
IBG(le_link) = register_list_destructors(_php_ibase_close_link, NULL);
|
|
|
|
IBG(le_plink) = register_list_destructors(_php_ibase_commit_link, _php_ibase_close_plink);
|
|
|
|
|
|
|
|
REGISTER_LONG_CONSTANT("IBASE_DEFAULT", PHP_IBASE_DEFAULT, CONST_PERSISTENT);
|
|
|
|
REGISTER_LONG_CONSTANT("IBASE_TEXT", PHP_IBASE_TEXT, CONST_PERSISTENT);
|
2000-05-12 11:02:14 +08:00
|
|
|
REGISTER_LONG_CONSTANT("IBASE_UNIXTIME", PHP_IBASE_UNIXTIME, CONST_PERSISTENT);
|
2000-03-13 03:44:23 +08:00
|
|
|
REGISTER_LONG_CONSTANT("IBASE_READ", PHP_IBASE_READ, CONST_PERSISTENT);
|
2000-04-18 10:52:45 +08:00
|
|
|
REGISTER_LONG_CONSTANT("IBASE_COMMITTED", PHP_IBASE_COMMITTED, CONST_PERSISTENT);
|
2000-03-13 03:44:23 +08:00
|
|
|
REGISTER_LONG_CONSTANT("IBASE_CONSISTENCY", PHP_IBASE_CONSISTENCY, CONST_PERSISTENT);
|
|
|
|
REGISTER_LONG_CONSTANT("IBASE_NOWAIT", PHP_IBASE_NOWAIT, CONST_PERSISTENT);
|
2000-05-12 11:02:14 +08:00
|
|
|
REGISTER_LONG_CONSTANT("IBASE_TIMESTAMP", PHP_IBASE_TIMESTAMP, CONST_PERSISTENT);
|
|
|
|
REGISTER_LONG_CONSTANT("IBASE_DATE", PHP_IBASE_DATE, CONST_PERSISTENT);
|
|
|
|
REGISTER_LONG_CONSTANT("IBASE_TIME", PHP_IBASE_TIME, CONST_PERSISTENT);
|
2000-03-13 03:44:23 +08:00
|
|
|
|
1999-04-22 10:48:28 +08:00
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
|
1999-08-02 23:02:52 +08:00
|
|
|
PHP_RINIT_FUNCTION(ibase)
|
1999-04-22 10:48:28 +08:00
|
|
|
{
|
2000-03-13 03:44:23 +08:00
|
|
|
IBLS_FETCH();
|
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
IBG(default_link)= -1;
|
2000-03-13 03:44:23 +08:00
|
|
|
IBG(num_links) = IBG(num_persistent);
|
|
|
|
|
2000-05-12 11:02:14 +08:00
|
|
|
if (IBG(timestampformat))
|
|
|
|
DL_FREE(IBG(timestampformat));
|
|
|
|
IBG(timestampformat) = DL_STRDUP(IBG(cfg_timestampformat));
|
|
|
|
|
|
|
|
if (IBG(dateformat))
|
|
|
|
DL_FREE(IBG(dateformat));
|
|
|
|
IBG(dateformat) = DL_STRDUP(IBG(cfg_dateformat));
|
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
if (IBG(timeformat))
|
2000-03-13 03:44:23 +08:00
|
|
|
DL_FREE(IBG(timeformat));
|
|
|
|
IBG(timeformat) = DL_STRDUP(IBG(cfg_timeformat));
|
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
if (IBG(errmsg))
|
2000-03-13 03:44:23 +08:00
|
|
|
DL_FREE(IBG(errmsg));
|
|
|
|
IBG(errmsg) = DL_MALLOC(sizeof(char)*MAX_ERRMSG+1);
|
1999-04-22 10:48:28 +08:00
|
|
|
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
PHP_MSHUTDOWN_FUNCTION(ibase)
|
1999-04-22 10:48:28 +08:00
|
|
|
{
|
2000-04-18 10:52:45 +08:00
|
|
|
UNREGISTER_INI_ENTRIES();
|
2000-03-13 03:44:23 +08:00
|
|
|
return SUCCESS;
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
PHP_RSHUTDOWN_FUNCTION(ibase)
|
1999-04-22 10:48:28 +08:00
|
|
|
{
|
2000-03-13 03:44:23 +08:00
|
|
|
IBLS_FETCH();
|
|
|
|
|
2000-05-12 11:02:14 +08:00
|
|
|
if (IBG(timestampformat))
|
|
|
|
DL_FREE(IBG(timestampformat));
|
|
|
|
IBG(timestampformat) = NULL;
|
|
|
|
|
|
|
|
if (IBG(dateformat))
|
|
|
|
DL_FREE(IBG(dateformat));
|
|
|
|
IBG(dateformat) = NULL;
|
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
if (IBG(timeformat))
|
2000-03-13 03:44:23 +08:00
|
|
|
DL_FREE(IBG(timeformat));
|
2000-04-18 10:52:45 +08:00
|
|
|
IBG(timeformat) = NULL;
|
2000-03-13 03:44:23 +08:00
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
if (IBG(errmsg))
|
2000-03-13 03:44:23 +08:00
|
|
|
DL_FREE(IBG(errmsg));
|
|
|
|
IBG(errmsg) = NULL;
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-08-02 23:02:52 +08:00
|
|
|
PHP_MINFO_FUNCTION(ibase)
|
1999-04-22 10:48:28 +08:00
|
|
|
{
|
2000-04-07 05:07:44 +08:00
|
|
|
char tmp[32];
|
2000-03-13 03:44:23 +08:00
|
|
|
IBLS_FETCH();
|
|
|
|
|
2000-04-07 00:57:33 +08:00
|
|
|
php_info_print_table_start();
|
|
|
|
php_info_print_table_row(2, "Interbase Support", "enabled");
|
|
|
|
php_info_print_table_row(2, "Revision", "$Revision$");
|
2000-05-02 08:44:35 +08:00
|
|
|
#if defined(COMPILE_DL) || defined(COMPILE_DL_INTERBASE)
|
2000-04-07 00:57:33 +08:00
|
|
|
php_info_print_table_row(2, "Dynamic Module", "yes");
|
2000-03-13 03:44:23 +08:00
|
|
|
#endif
|
2000-04-07 00:57:33 +08:00
|
|
|
php_info_print_table_row(2, "Allow Persistent Links", (IBG(allow_persistent)?"Yes":"No") );
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
if (IBG(max_persistent) == -1) {
|
2000-04-07 05:07:44 +08:00
|
|
|
snprintf(tmp, 31, "%d/unlimited", IBG(num_persistent));
|
2000-03-13 03:44:23 +08:00
|
|
|
} else {
|
2000-04-07 05:07:44 +08:00
|
|
|
snprintf(tmp, 31, "%d/%ld", IBG(num_persistent), IBG(max_persistent));
|
2000-03-13 03:44:23 +08:00
|
|
|
}
|
2000-04-07 05:07:44 +08:00
|
|
|
tmp[31]=0;
|
2000-04-07 00:57:33 +08:00
|
|
|
php_info_print_table_row(2, "Persistent Links", tmp );
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
if (IBG(max_links) == -1) {
|
2000-04-07 05:07:44 +08:00
|
|
|
snprintf(tmp, 31, "%d/unlimited", IBG(num_links));
|
2000-03-13 03:44:23 +08:00
|
|
|
} else {
|
2000-04-07 05:07:44 +08:00
|
|
|
snprintf(tmp, 31, "%d/%ld", IBG(num_links), IBG(max_links));
|
2000-03-13 03:44:23 +08:00
|
|
|
}
|
2000-04-07 05:07:44 +08:00
|
|
|
tmp[31]=0;
|
2000-04-07 00:57:33 +08:00
|
|
|
php_info_print_table_row(2, "Total Links", tmp );
|
|
|
|
|
2000-05-12 11:02:14 +08:00
|
|
|
php_info_print_table_row(2, "Timestamp Format", IBG(timestampformat) );
|
|
|
|
php_info_print_table_row(2, "Date Format", IBG(dateformat) );
|
2000-04-07 00:57:33 +08:00
|
|
|
php_info_print_table_row(2, "Time Format", IBG(timeformat) );
|
|
|
|
|
|
|
|
php_info_print_table_end();
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
|
1999-04-22 10:48:28 +08:00
|
|
|
/* {{{ _php_ibase_attach_db() */
|
2000-03-13 03:44:23 +08:00
|
|
|
static int _php_ibase_attach_db(char *server, char *uname, char *passwd, char *charset, int buffers, char *role, isc_db_handle *db)
|
1999-04-22 10:48:28 +08:00
|
|
|
{
|
2000-03-13 03:44:23 +08:00
|
|
|
char dpb_buffer[256], *dpb, *p;
|
|
|
|
int dpb_length, len;
|
|
|
|
|
|
|
|
dpb = dpb_buffer;
|
|
|
|
|
|
|
|
*dpb++ = isc_dpb_version1;
|
|
|
|
|
|
|
|
if (uname != NULL && (len = strlen(uname))) {
|
|
|
|
*dpb++ = isc_dpb_user_name;
|
|
|
|
*dpb++ = len;
|
|
|
|
for (p = uname; *p;) {
|
|
|
|
*dpb++ = *p++;
|
|
|
|
}
|
|
|
|
}
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
if (passwd != NULL && (len = strlen(passwd))) {
|
|
|
|
*dpb++ = isc_dpb_password;
|
|
|
|
*dpb++ = strlen(passwd);
|
|
|
|
for (p = passwd; *p;) {
|
|
|
|
*dpb++ = *p++;
|
|
|
|
}
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
if (charset != NULL && (len = strlen(charset))) {
|
|
|
|
*dpb++ = isc_dpb_lc_ctype;
|
|
|
|
*dpb++ = strlen(charset);
|
|
|
|
for (p = charset; *p;) {
|
|
|
|
*dpb++ = *p++;
|
|
|
|
}
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
if (buffers) {
|
|
|
|
*dpb++ = isc_dpb_num_buffers;
|
|
|
|
*dpb++ = 1;
|
|
|
|
*dpb++ = buffers;
|
|
|
|
}
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
#ifdef isc_dpb_sql_role_name
|
|
|
|
if (role != NULL && (len = strlen(role))) {
|
|
|
|
*dpb++ = isc_dpb_sql_role_name;
|
|
|
|
*dpb++ = strlen(role);
|
|
|
|
for (p = role; *p;) {
|
|
|
|
*dpb++ = *p++;
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
|
|
|
}
|
2000-03-13 03:44:23 +08:00
|
|
|
#endif
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
dpb_length = dpb - dpb_buffer;
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
if (isc_attach_database(IB_STATUS, strlen(server), server, db, dpb_length, dpb_buffer)) {
|
|
|
|
_php_ibase_error();
|
|
|
|
return FAILURE;
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
2000-03-13 03:44:23 +08:00
|
|
|
return SUCCESS;
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
/* {{{ _php_ibase_connect() */
|
|
|
|
static void _php_ibase_connect(INTERNAL_FUNCTION_PARAMETERS, int persistent)
|
|
|
|
{
|
2000-04-30 13:46:04 +08:00
|
|
|
pval ***args;
|
|
|
|
char *ib_server = NULL, *ib_uname, *ib_passwd, *ib_charset = NULL, *ib_buffers = NULL, *ib_dialect = NULL, *ib_role = NULL;
|
2000-03-13 03:44:23 +08:00
|
|
|
int i, ib_uname_len, ib_passwd_len;
|
1999-04-22 10:48:28 +08:00
|
|
|
isc_db_handle db_handle = NULL;
|
|
|
|
char *hashed_details;
|
2000-03-13 03:44:23 +08:00
|
|
|
int hashed_details_length = 0;
|
|
|
|
ibase_db_link *ib_link;
|
|
|
|
IBLS_FETCH();
|
2000-04-18 10:52:45 +08:00
|
|
|
PLS_FETCH();
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
RESET_ERRMSG;
|
|
|
|
|
|
|
|
ib_uname = IBG(default_user);
|
|
|
|
ib_passwd = IBG(default_password);
|
1999-04-22 10:48:28 +08:00
|
|
|
ib_uname_len = ib_uname ? strlen(ib_uname) : 0;
|
|
|
|
ib_passwd_len = ib_passwd ? strlen(ib_passwd) : 0;
|
2000-03-13 03:44:23 +08:00
|
|
|
|
2000-04-30 13:46:04 +08:00
|
|
|
if(ARG_COUNT(ht) < 1 || ARG_COUNT(ht) > 7){
|
1999-04-22 10:48:28 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
2000-03-13 03:44:23 +08:00
|
|
|
}
|
|
|
|
|
2000-04-30 13:46:04 +08:00
|
|
|
args = (pval ***) emalloc(sizeof(pval **)*ARG_COUNT(ht));
|
|
|
|
if (zend_get_parameters_array_ex(ARG_COUNT(ht), args) == FAILURE) {
|
2000-03-13 03:44:23 +08:00
|
|
|
efree(args);
|
|
|
|
RETURN_FALSE;
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
switch(ARG_COUNT(ht)) {
|
2000-04-30 13:46:04 +08:00
|
|
|
case 7:
|
|
|
|
convert_to_string_ex(args[6]);
|
|
|
|
ib_role = (*args[6])->value.str.val;
|
|
|
|
hashed_details_length += (*args[6])->value.str.len;
|
|
|
|
/* fallout */
|
|
|
|
case 6:
|
|
|
|
convert_to_string_ex(args[5]);
|
|
|
|
ib_dialect = (*args[5])->value.str.val;
|
|
|
|
hashed_details_length += (*args[5])->value.str.len;
|
|
|
|
/* fallout */
|
2000-04-18 10:52:45 +08:00
|
|
|
case 5:
|
2000-04-30 13:46:04 +08:00
|
|
|
convert_to_string_ex(args[4]);
|
|
|
|
ib_buffers = (*args[4])->value.str.val;
|
|
|
|
hashed_details_length += (*args[4])->value.str.len;
|
2000-04-18 10:52:45 +08:00
|
|
|
/* fallout */
|
2000-03-13 03:44:23 +08:00
|
|
|
case 4:
|
2000-04-30 13:46:04 +08:00
|
|
|
convert_to_string_ex(args[3]);
|
|
|
|
ib_charset = (*args[3])->value.str.val;
|
|
|
|
hashed_details_length += (*args[3])->value.str.len;
|
2000-03-13 03:44:23 +08:00
|
|
|
/* fallout */
|
|
|
|
case 3:
|
2000-04-30 13:46:04 +08:00
|
|
|
convert_to_string_ex(args[2]);
|
|
|
|
ib_passwd = (*args[2])->value.str.val;
|
|
|
|
hashed_details_length += (*args[2])->value.str.len;
|
2000-03-13 03:44:23 +08:00
|
|
|
/* fallout */
|
|
|
|
case 2:
|
2000-04-30 13:46:04 +08:00
|
|
|
convert_to_string_ex(args[1]);
|
|
|
|
ib_uname = (*args[1])->value.str.val;
|
|
|
|
hashed_details_length += (*args[1])->value.str.len;
|
2000-03-13 03:44:23 +08:00
|
|
|
/* fallout */
|
|
|
|
case 1:
|
2000-04-30 13:46:04 +08:00
|
|
|
convert_to_string_ex(args[0]);
|
|
|
|
ib_server = (*args[0])->value.str.val;
|
|
|
|
hashed_details_length += (*args[0])->value.str.len;
|
2000-04-18 10:52:45 +08:00
|
|
|
} /* case */
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
efree(args);
|
|
|
|
|
2000-04-30 13:46:04 +08:00
|
|
|
hashed_details = (char *) emalloc(hashed_details_length+strlen("ibase_%s_%s_%s_%s_%s_%s_%s")+1);
|
|
|
|
sprintf(hashed_details, "ibase_%s_%s_%s_%s_%s_%s_%s", SAFE_STRING(ib_server), SAFE_STRING(ib_uname), SAFE_STRING(ib_passwd), SAFE_STRING(ib_charset), SAFE_STRING(ib_buffers), SAFE_STRING(ib_dialect), SAFE_STRING(ib_role));
|
2000-03-13 03:44:23 +08:00
|
|
|
|
1999-04-22 10:48:28 +08:00
|
|
|
if (persistent) {
|
|
|
|
list_entry *le;
|
2000-05-04 20:28:00 +08:00
|
|
|
int open_new_connection = 1;
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-05-04 20:28:00 +08:00
|
|
|
if (zend_hash_find(&EG(persistent_list), hashed_details, hashed_details_length+1, (void **) &le) != FAILURE) {
|
|
|
|
char tmp_1[] = {isc_info_base_level, isc_info_end};
|
|
|
|
char tmp_2[8]; /* Enough? Hope so... */
|
|
|
|
|
|
|
|
if (le->type != IBG(le_plink)) {
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
/* Check if connection has timed out */
|
|
|
|
ib_link = (ibase_db_link *) le->ptr;
|
|
|
|
if (!isc_database_info(IB_STATUS, &ib_link->link, sizeof(tmp_1), tmp_1, sizeof(tmp_2), tmp_2)) {
|
|
|
|
open_new_connection = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* There was no previous connection to use or it has timed out */
|
|
|
|
if (open_new_connection) {
|
1999-04-22 10:48:28 +08:00
|
|
|
list_entry new_le;
|
|
|
|
|
2000-04-30 13:46:04 +08:00
|
|
|
if ((IBG(max_links) != -1) && (IBG(num_links) >= IBG(max_links))) {
|
2000-03-13 03:44:23 +08:00
|
|
|
_php_ibase_module_error("Too many open links (%d)", IBG(num_links));
|
1999-04-22 10:48:28 +08:00
|
|
|
efree(hashed_details);
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
2000-04-30 13:46:04 +08:00
|
|
|
if ((IBG(max_persistent) != -1) && (IBG(num_persistent) >= IBG(max_persistent))) {
|
2000-03-13 03:44:23 +08:00
|
|
|
_php_ibase_module_error("Too many open persistent links (%d)", IBG(num_persistent));
|
1999-04-22 10:48:28 +08:00
|
|
|
efree(hashed_details);
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
/* create the ib_link */
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-04-30 13:46:04 +08:00
|
|
|
if (_php_ibase_attach_db(ib_server, ib_uname, ib_passwd, ib_charset,
|
|
|
|
(ib_buffers ? strtoul(ib_buffers, NULL, 0) : 0),
|
|
|
|
ib_role, &db_handle) == FAILURE) {
|
1999-04-22 10:48:28 +08:00
|
|
|
efree(hashed_details);
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
ib_link = (ibase_db_link *) malloc(sizeof(ibase_db_link));
|
|
|
|
ib_link->link = db_handle;
|
2000-04-30 13:46:04 +08:00
|
|
|
ib_link->dialect = (ib_dialect ? strtoul(ib_dialect, NULL, 10) : 1);
|
2000-04-18 10:52:45 +08:00
|
|
|
for (i = 0; i < IBASE_TRANS_ON_LINK; i++)
|
2000-03-13 03:44:23 +08:00
|
|
|
ib_link->trans[i] = NULL;
|
|
|
|
|
1999-04-22 10:48:28 +08:00
|
|
|
/* hash it up */
|
2000-03-13 03:44:23 +08:00
|
|
|
new_le.type = IBG(le_plink);
|
|
|
|
new_le.ptr = ib_link;
|
|
|
|
if (zend_hash_update(&EG(persistent_list), hashed_details, hashed_details_length+1, (void *) &new_le, sizeof(list_entry), NULL)==FAILURE) {
|
1999-04-22 10:48:28 +08:00
|
|
|
efree(hashed_details);
|
2000-03-13 03:44:23 +08:00
|
|
|
free(ib_link);
|
1999-04-22 10:48:28 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
2000-03-13 03:44:23 +08:00
|
|
|
IBG(num_links)++;
|
|
|
|
IBG(num_persistent)++;
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
2000-03-13 03:44:23 +08:00
|
|
|
return_value->value.lval = IBASE_TRANS_ON_LINK *
|
|
|
|
zend_list_insert(ib_link, IBG(le_plink));
|
2000-04-18 10:52:45 +08:00
|
|
|
return_value->type = IS_RESOURCE;
|
2000-04-30 13:46:04 +08:00
|
|
|
/*
|
|
|
|
ZEND_REGISTER_RESOURCE(return_value, ib_link, IBG(le_plink));
|
|
|
|
*/
|
1999-04-22 10:48:28 +08:00
|
|
|
} else {
|
|
|
|
list_entry *index_ptr, new_index_ptr;
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
/* first we check the hash for the hashed_details key. if it exists,
|
|
|
|
* it should point us to the right offset where the actual ib_link sits.
|
|
|
|
* if it doesn't, open a new ib_link, add it to the resource list,
|
1999-04-22 10:48:28 +08:00
|
|
|
* and add a pointer to it with hashed_details as the key.
|
|
|
|
*/
|
2000-03-13 03:44:23 +08:00
|
|
|
if (zend_hash_find(&EG(regular_list), hashed_details, hashed_details_length+1, (void **) &index_ptr)==SUCCESS) {
|
|
|
|
int type,xlink;
|
1999-04-22 10:48:28 +08:00
|
|
|
void *ptr;
|
|
|
|
if (index_ptr->type != le_index_ptr) {
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
2000-03-13 03:44:23 +08:00
|
|
|
xlink = (int) index_ptr->ptr;
|
|
|
|
ptr = zend_list_find(xlink, &type); /* check if the xlink is still there */
|
|
|
|
if (ptr && (type==IBG(le_link) || type==IBG(le_plink))) {
|
2000-04-18 10:52:45 +08:00
|
|
|
zend_list_addref(xlink);
|
2000-03-13 03:44:23 +08:00
|
|
|
return_value->value.lval = IBG(default_link) = xlink;
|
2000-04-18 10:52:45 +08:00
|
|
|
return_value->type = IS_RESOURCE;
|
2000-04-30 13:46:04 +08:00
|
|
|
IBG(default_link) = return_value->value.lval;
|
1999-04-22 10:48:28 +08:00
|
|
|
efree(hashed_details);
|
|
|
|
return;
|
|
|
|
} else {
|
2000-03-13 03:44:23 +08:00
|
|
|
zend_hash_del(&EG(regular_list), hashed_details, hashed_details_length+1);
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
|
|
|
}
|
2000-04-30 13:46:04 +08:00
|
|
|
if ((IBG(max_links) != -1) && (IBG(num_links) >= IBG(max_links))) {
|
2000-03-13 03:44:23 +08:00
|
|
|
_php_ibase_module_error("Too many open links (%d)", IBG(num_links));
|
1999-04-22 10:48:28 +08:00
|
|
|
efree(hashed_details);
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
2000-03-13 03:44:23 +08:00
|
|
|
/* create the ib_link */
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-04-30 13:46:04 +08:00
|
|
|
if (_php_ibase_attach_db(ib_server, ib_uname, ib_passwd, ib_charset,
|
|
|
|
(ib_buffers ? strtoul(ib_buffers, NULL, 0) : 0),
|
|
|
|
ib_role, &db_handle) == FAILURE) {
|
1999-04-22 10:48:28 +08:00
|
|
|
efree(hashed_details);
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
ib_link = (ibase_db_link *) emalloc(sizeof(ibase_db_link));
|
|
|
|
ib_link->link = db_handle;
|
2000-05-10 04:30:23 +08:00
|
|
|
ib_link->dialect = (ib_dialect ? strtoul(ib_dialect, NULL, 10) : 1);
|
2000-04-18 10:52:45 +08:00
|
|
|
for (i = 0; i < IBASE_TRANS_ON_LINK; i++)
|
2000-03-13 03:44:23 +08:00
|
|
|
ib_link->trans[i] = NULL;
|
|
|
|
|
1999-04-22 10:48:28 +08:00
|
|
|
/* add it to the list */
|
2000-03-13 03:44:23 +08:00
|
|
|
return_value->value.lval = IBASE_TRANS_ON_LINK *
|
|
|
|
zend_list_insert(ib_link, IBG(le_link));
|
2000-04-18 10:52:45 +08:00
|
|
|
return_value->type = IS_RESOURCE;
|
2000-04-30 13:46:04 +08:00
|
|
|
/*
|
|
|
|
ZEND_REGISTER_RESOURCE(return_value, ib_link, IBG(le_link));
|
|
|
|
*/
|
1999-04-22 10:48:28 +08:00
|
|
|
/* add it to the hash */
|
|
|
|
new_index_ptr.ptr = (void *) return_value->value.lval;
|
|
|
|
new_index_ptr.type = le_index_ptr;
|
2000-03-13 03:44:23 +08:00
|
|
|
if (zend_hash_update(&EG(regular_list), hashed_details, hashed_details_length+1, (void *) &new_index_ptr, sizeof(list_entry), NULL)==FAILURE) {
|
1999-04-22 10:48:28 +08:00
|
|
|
efree(hashed_details);
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
2000-03-13 03:44:23 +08:00
|
|
|
IBG(num_links)++;
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
|
|
|
efree(hashed_details);
|
2000-03-13 03:44:23 +08:00
|
|
|
IBG(default_link) = return_value->value.lval;
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
|
2000-04-30 13:46:04 +08:00
|
|
|
/* {{{ proto int ibase_connect(string database [, string username] [, string password] [, string charset] [, int buffers] [, int dialect] [, string role])
|
1999-04-22 10:48:28 +08:00
|
|
|
Open a connection to an InterBase database */
|
1999-05-21 18:06:25 +08:00
|
|
|
PHP_FUNCTION(ibase_connect)
|
1999-04-22 10:48:28 +08:00
|
|
|
{
|
2000-03-13 03:44:23 +08:00
|
|
|
_php_ibase_connect(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0);
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
|
2000-04-30 13:46:04 +08:00
|
|
|
/* {{{ proto int ibase_pconnect(string database [, string username] [, string password] [, string charset] [, int buffers] [, int dialect] [, string role])
|
1999-04-22 10:48:28 +08:00
|
|
|
Open a persistent connection to an InterBase database */
|
1999-05-21 18:06:25 +08:00
|
|
|
PHP_FUNCTION(ibase_pconnect)
|
1999-04-22 10:48:28 +08:00
|
|
|
{
|
2000-03-13 03:44:23 +08:00
|
|
|
_php_ibase_connect(INTERNAL_FUNCTION_PARAM_PASSTHRU, 1);
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
|
1999-04-22 10:48:28 +08:00
|
|
|
/* {{{ proto int ibase_close([int link_identifier])
|
|
|
|
Close an InterBase connection */
|
1999-05-21 18:06:25 +08:00
|
|
|
PHP_FUNCTION(ibase_close)
|
1999-04-22 10:48:28 +08:00
|
|
|
{
|
2000-04-30 13:46:04 +08:00
|
|
|
zval **link_arg;
|
2000-03-13 03:44:23 +08:00
|
|
|
ibase_db_link *ib_link;
|
|
|
|
int link_id, trans_n;
|
|
|
|
IBLS_FETCH();
|
|
|
|
|
|
|
|
|
|
|
|
RESET_ERRMSG;
|
1999-04-22 10:48:28 +08:00
|
|
|
|
|
|
|
switch (ARG_COUNT(ht)) {
|
|
|
|
case 0:
|
2000-03-13 03:44:23 +08:00
|
|
|
link_id = IBG(default_link);
|
1999-04-22 10:48:28 +08:00
|
|
|
break;
|
|
|
|
case 1:
|
2000-04-30 13:46:04 +08:00
|
|
|
if (zend_get_parameters_ex(1, &link_arg) == FAILURE) {
|
1999-04-22 10:48:28 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
2000-04-30 13:46:04 +08:00
|
|
|
convert_to_long_ex(link_arg);
|
|
|
|
link_id = (*link_arg)->value.lval;
|
1999-04-22 10:48:28 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
break;
|
|
|
|
}
|
2000-04-18 10:52:45 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
GET_LINK_TRANS(link_id, ib_link, trans_n);
|
|
|
|
zend_list_delete(link_id);
|
1999-04-22 10:48:28 +08:00
|
|
|
RETURN_TRUE;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
/* {{{ _php_ibase_alloc_array() */
|
|
|
|
static int _php_ibase_alloc_array(ibase_array **ib_arrayp, int *array_cntp,
|
|
|
|
XSQLDA *sqlda, isc_db_handle link, isc_tr_handle trans)
|
1999-04-22 10:48:28 +08:00
|
|
|
{
|
2000-03-13 03:44:23 +08:00
|
|
|
#define IB_ARRAY (*ib_arrayp)
|
|
|
|
|
|
|
|
int i, dim, ar_cnt, ar_length;
|
|
|
|
XSQLVAR *var;
|
|
|
|
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
IB_ARRAY = NULL;
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
ar_cnt = 0; /* find arrays */
|
|
|
|
var = sqlda->sqlvar;
|
2000-04-18 10:52:45 +08:00
|
|
|
for (i = 0; i < sqlda->sqld; i++, var++) {
|
|
|
|
if ((var->sqltype & ~1) == SQL_ARRAY)
|
2000-03-13 03:44:23 +08:00
|
|
|
ar_cnt++;
|
|
|
|
}
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
if (ar_cnt) { /* have arrays ? */
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
*array_cntp = ar_cnt;
|
|
|
|
IB_ARRAY = emalloc(sizeof(ibase_array)*ar_cnt);
|
|
|
|
ar_cnt = 0;
|
|
|
|
var = sqlda->sqlvar;
|
2000-04-18 10:52:45 +08:00
|
|
|
for (i = 0; i < sqlda->sqld; i++, var++) {
|
|
|
|
if ((var->sqltype & ~1) == SQL_ARRAY) {
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
ISC_ARRAY_DESC *ar_desc = &IB_ARRAY[ar_cnt].ar_desc;
|
|
|
|
|
|
|
|
if (isc_array_lookup_bounds(IB_STATUS, &link, &trans,
|
|
|
|
var->relname, var->sqlname, ar_desc)) {
|
|
|
|
_php_ibase_error();
|
|
|
|
efree(IB_ARRAY);
|
|
|
|
IB_ARRAY = NULL;
|
|
|
|
return FAILURE;
|
|
|
|
}
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
switch (ar_desc->array_desc_dtype) {
|
|
|
|
case blr_text:
|
|
|
|
case blr_text2:
|
|
|
|
IB_ARRAY[ar_cnt].el_type = SQL_TEXT;
|
|
|
|
IB_ARRAY[ar_cnt].el_size = ar_desc->array_desc_length+1;
|
|
|
|
break;
|
|
|
|
case blr_short:
|
|
|
|
IB_ARRAY[ar_cnt].el_type = SQL_SHORT;
|
|
|
|
IB_ARRAY[ar_cnt].el_size = sizeof(short);
|
|
|
|
break;
|
|
|
|
case blr_long:
|
|
|
|
IB_ARRAY[ar_cnt].el_type = SQL_LONG;
|
|
|
|
IB_ARRAY[ar_cnt].el_size = sizeof(long);
|
|
|
|
break;
|
|
|
|
case blr_float:
|
|
|
|
IB_ARRAY[ar_cnt].el_type = SQL_FLOAT;
|
|
|
|
IB_ARRAY[ar_cnt].el_size = sizeof(float);
|
|
|
|
break;
|
|
|
|
case blr_double:
|
|
|
|
IB_ARRAY[ar_cnt].el_type = SQL_DOUBLE;
|
|
|
|
IB_ARRAY[ar_cnt].el_size = sizeof(double);
|
|
|
|
break;
|
|
|
|
case blr_date:
|
|
|
|
IB_ARRAY[ar_cnt].el_type = SQL_DATE;
|
|
|
|
IB_ARRAY[ar_cnt].el_size = sizeof(ISC_QUAD);
|
|
|
|
break;
|
|
|
|
case blr_varying:
|
|
|
|
case blr_varying2: /* changed to SQL_TEXT ? */
|
|
|
|
/* sql_type = SQL_VARYING; Why? FIXME: ??? */
|
|
|
|
IB_ARRAY[ar_cnt].el_type = SQL_TEXT;
|
|
|
|
IB_ARRAY[ar_cnt].el_size = ar_desc->array_desc_length+sizeof(short);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
_php_ibase_module_error("unexpected array type %d in relation '%s' column '%s')",
|
2000-04-18 10:52:45 +08:00
|
|
|
ar_desc->array_desc_dtype,var->relname, var->sqlname);
|
2000-03-13 03:44:23 +08:00
|
|
|
efree(IB_ARRAY);
|
|
|
|
IB_ARRAY = NULL;
|
|
|
|
return FAILURE;
|
2000-04-18 10:52:45 +08:00
|
|
|
} /* switch array_desc_type */
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
ar_length = 0; /* calculate elements count */
|
|
|
|
for (dim = 0; dim < ar_desc->array_desc_dimensions; dim++) {
|
|
|
|
ar_length += 1 + ar_desc->array_desc_bounds[dim].array_bound_upper
|
|
|
|
- ar_desc->array_desc_bounds[dim].array_bound_lower;
|
|
|
|
}
|
|
|
|
IB_ARRAY[ar_cnt].ar_size = IB_ARRAY[ar_cnt].el_size * ar_length;
|
|
|
|
|
|
|
|
ar_cnt++;
|
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
} /* if SQL_ARRAY */
|
|
|
|
} /* for column */
|
|
|
|
} /* if array_cnt */
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
return SUCCESS;
|
|
|
|
#undef IB_ARRAY
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
/* {{{ _php_ibase_alloc_query() */
|
|
|
|
/* allocate and prepare query */
|
2000-05-10 04:30:23 +08:00
|
|
|
static int _php_ibase_alloc_query(ibase_query **ib_queryp, isc_db_handle link, isc_tr_handle trans, char *query, int dialect)
|
2000-03-13 03:44:23 +08:00
|
|
|
{
|
|
|
|
#define IB_QUERY (*ib_queryp)
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
IB_QUERY = emalloc(sizeof(ibase_query));
|
|
|
|
IB_QUERY->link = link;
|
|
|
|
IB_QUERY->trans = trans;
|
|
|
|
IB_QUERY->stmt = NULL;
|
|
|
|
IB_QUERY->out_sqlda = NULL;
|
|
|
|
IB_QUERY->in_sqlda = NULL;
|
|
|
|
IB_QUERY->in_array = NULL;
|
|
|
|
IB_QUERY->in_array_cnt = 0;
|
|
|
|
IB_QUERY->out_array = NULL;
|
|
|
|
IB_QUERY->out_array_cnt = 0;
|
2000-05-10 04:30:23 +08:00
|
|
|
IB_QUERY->dialect = dialect;
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
if (isc_dsql_allocate_statement(IB_STATUS, &link, &IB_QUERY->stmt)) {
|
|
|
|
_php_ibase_error();
|
|
|
|
goto _php_ibase_alloc_query_error;
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
IB_QUERY->out_sqlda = emalloc(XSQLDA_LENGTH(0));
|
|
|
|
IB_QUERY->out_sqlda->sqln = 0;
|
|
|
|
IB_QUERY->out_sqlda->version = SQLDA_VERSION1;
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-05-10 04:30:23 +08:00
|
|
|
if (isc_dsql_prepare(IB_STATUS, &IB_QUERY->trans, &IB_QUERY->stmt, 0, query, dialect, IB_QUERY->out_sqlda)) {
|
2000-03-13 03:44:23 +08:00
|
|
|
_php_ibase_error();
|
|
|
|
goto _php_ibase_alloc_query_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* not enough output variables ? */
|
|
|
|
if (IB_QUERY->out_sqlda->sqld > IB_QUERY->out_sqlda->sqln) {
|
|
|
|
IB_QUERY->out_sqlda = erealloc(IB_QUERY->out_sqlda,XSQLDA_LENGTH(IB_QUERY->out_sqlda->sqld));
|
|
|
|
IB_QUERY->out_sqlda->sqln = IB_QUERY->out_sqlda->sqld;
|
|
|
|
IB_QUERY->out_sqlda->version = SQLDA_VERSION1;
|
|
|
|
if (isc_dsql_describe(IB_STATUS, &IB_QUERY->stmt, SQLDA_VERSION1, IB_QUERY->out_sqlda)) {
|
|
|
|
_php_ibase_error();
|
|
|
|
goto _php_ibase_alloc_query_error;
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
2000-03-13 03:44:23 +08:00
|
|
|
}
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
/* maybe have input placeholders? */
|
|
|
|
IB_QUERY->in_sqlda = emalloc(XSQLDA_LENGTH(0));
|
|
|
|
IB_QUERY->in_sqlda->sqln = 0;
|
|
|
|
IB_QUERY->in_sqlda->version = SQLDA_VERSION1;
|
|
|
|
if (isc_dsql_describe_bind(IB_STATUS, &IB_QUERY->stmt, SQLDA_VERSION1, IB_QUERY->in_sqlda)) {
|
|
|
|
_php_ibase_error();
|
|
|
|
goto _php_ibase_alloc_query_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* not enough input variables ? */
|
|
|
|
if (IB_QUERY->in_sqlda->sqln < IB_QUERY->in_sqlda->sqld) {
|
|
|
|
IB_QUERY->in_sqlda = erealloc(IB_QUERY->in_sqlda,XSQLDA_LENGTH(IB_QUERY->in_sqlda->sqld));
|
|
|
|
IB_QUERY->in_sqlda->sqln = IB_QUERY->in_sqlda->sqld;
|
|
|
|
IB_QUERY->in_sqlda->version = SQLDA_VERSION1;
|
|
|
|
if (isc_dsql_describe_bind(IB_STATUS, &IB_QUERY->stmt, SQLDA_VERSION1, IB_QUERY->in_sqlda)) {
|
|
|
|
_php_ibase_error();
|
|
|
|
goto _php_ibase_alloc_query_error;
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
2000-03-13 03:44:23 +08:00
|
|
|
}
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
/* allocate arrays... */
|
|
|
|
if (_php_ibase_alloc_array(&IB_QUERY->in_array, &IB_QUERY->in_array_cnt,
|
2000-04-18 10:52:45 +08:00
|
|
|
IB_QUERY->in_sqlda, link, trans) == FAILURE) {
|
2000-03-13 03:44:23 +08:00
|
|
|
goto _php_ibase_alloc_query_error; /* error report already done */
|
|
|
|
}
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
if (_php_ibase_alloc_array(&IB_QUERY->out_array, &IB_QUERY->out_array_cnt,
|
2000-04-18 10:52:45 +08:00
|
|
|
IB_QUERY->out_sqlda, link, trans) == FAILURE) {
|
2000-03-13 03:44:23 +08:00
|
|
|
goto _php_ibase_alloc_query_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* no, haven't placeholders at all */
|
2000-04-18 10:52:45 +08:00
|
|
|
if (IB_QUERY->in_sqlda->sqld == 0) {
|
2000-03-13 03:44:23 +08:00
|
|
|
efree(IB_QUERY->in_sqlda);
|
|
|
|
IB_QUERY->in_sqlda = NULL;
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
if (IB_QUERY->out_sqlda->sqld == 0) {
|
2000-03-13 03:44:23 +08:00
|
|
|
efree(IB_QUERY->out_sqlda);
|
|
|
|
IB_QUERY->out_sqlda = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return SUCCESS;
|
|
|
|
|
|
|
|
_php_ibase_alloc_query_error:
|
|
|
|
|
|
|
|
if (IB_QUERY->out_sqlda)
|
|
|
|
efree(IB_QUERY->out_sqlda);
|
|
|
|
if (IB_QUERY->in_sqlda)
|
|
|
|
efree(IB_QUERY->in_sqlda);
|
|
|
|
if (IB_QUERY->out_array)
|
|
|
|
efree(IB_QUERY->out_array);
|
|
|
|
efree(IB_QUERY);
|
|
|
|
IB_QUERY = NULL;
|
|
|
|
|
|
|
|
return FAILURE;
|
|
|
|
#undef IB_QUERY
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
|
2000-05-10 04:30:23 +08:00
|
|
|
/* {{{ _php_ibase_bind()
|
2000-03-13 03:44:23 +08:00
|
|
|
Bind parameter placeholders in a previously prepared query */
|
|
|
|
static int _php_ibase_bind(XSQLDA *sqlda, pval **b_vars, BIND_BUF *buf)
|
1999-04-22 10:48:28 +08:00
|
|
|
{
|
2000-03-13 03:44:23 +08:00
|
|
|
XSQLVAR *var;
|
|
|
|
pval *b_var;
|
|
|
|
int i;
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
var = sqlda->sqlvar;
|
2000-04-18 10:52:45 +08:00
|
|
|
for (i = 0; i < sqlda->sqld; var++, i++) { /* binded vars */
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
buf[i].sqlind = 0;
|
|
|
|
var->sqlind = &buf[i].sqlind;
|
|
|
|
b_var = b_vars[i];
|
|
|
|
|
|
|
|
switch(var->sqltype & ~1) {
|
|
|
|
case SQL_TEXT: /* direct to variable */
|
|
|
|
case SQL_VARYING:
|
|
|
|
convert_to_string(b_var);
|
|
|
|
var->sqldata = (void ISC_FAR *)b_var->value.str.val;
|
|
|
|
var->sqllen = b_var->value.str.len;
|
|
|
|
var->sqltype = SQL_TEXT + (var->sqltype & 1);
|
|
|
|
break;
|
|
|
|
case SQL_SHORT:
|
|
|
|
convert_to_long(b_var);
|
2000-04-18 10:52:45 +08:00
|
|
|
if (b_var->value.lval > SHRT_MAX || b_var->value.lval < SHRT_MIN) {
|
2000-03-13 03:44:23 +08:00
|
|
|
_php_ibase_module_error("field %*s overflow", var->aliasname_length, var->aliasname);
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
buf[i].val.sval = (short)b_var->value.lval;
|
|
|
|
var->sqldata = (void ISC_FAR *)(&buf[i].val.sval);
|
|
|
|
break;
|
2000-05-12 03:38:02 +08:00
|
|
|
case SQL_LONG:
|
|
|
|
if (var->sqlscale < 0) {
|
|
|
|
/*
|
|
|
|
DECIMAL or NUMERIC field stored internally as scaled integer.
|
|
|
|
Coerce it to string and let InterBase's internal routines
|
|
|
|
handle it.
|
|
|
|
*/
|
|
|
|
convert_to_string(b_var);
|
|
|
|
var->sqldata = (void ISC_FAR *)b_var->value.str.val;
|
|
|
|
var->sqllen = b_var->value.str.len;
|
|
|
|
var->sqltype = SQL_TEXT;
|
|
|
|
} else {
|
|
|
|
convert_to_long(b_var);
|
|
|
|
var->sqldata = (void ISC_FAR *)(&b_var->value.lval);
|
|
|
|
}
|
2000-03-13 03:44:23 +08:00
|
|
|
break;
|
|
|
|
case SQL_FLOAT:
|
|
|
|
convert_to_double(b_var);
|
|
|
|
buf[i].val.fval = (float)b_var->value.dval;
|
|
|
|
var->sqldata = (void ISC_FAR *)(&buf[i].val.fval);
|
|
|
|
break;
|
|
|
|
case SQL_DOUBLE: /* direct to variable */
|
|
|
|
convert_to_double(b_var);
|
|
|
|
var->sqldata = (void ISC_FAR *)(&b_var->value.dval);
|
|
|
|
break;
|
2000-05-10 04:30:23 +08:00
|
|
|
case SQL_INT64:
|
2000-05-12 03:38:02 +08:00
|
|
|
/*
|
|
|
|
Just let InterBase's internal routines handle it.
|
|
|
|
Besides, it might even have originally been a string
|
|
|
|
to avoid rounding errors...
|
|
|
|
*/
|
|
|
|
convert_to_string(b_var);
|
|
|
|
var->sqldata = (void ISC_FAR *)b_var->value.str.val;
|
|
|
|
var->sqllen = b_var->value.str.len;
|
|
|
|
var->sqltype = SQL_TEXT;
|
|
|
|
break;
|
2000-05-12 11:02:14 +08:00
|
|
|
#ifndef SQL_TIMESTAMP
|
|
|
|
case SQL_DATE:
|
|
|
|
#else
|
2000-05-10 04:30:23 +08:00
|
|
|
case SQL_TIMESTAMP:
|
|
|
|
case SQL_TYPE_DATE:
|
|
|
|
case SQL_TYPE_TIME:
|
2000-05-12 11:02:14 +08:00
|
|
|
#ifndef HAVE_STRPTIME
|
|
|
|
/*
|
|
|
|
Once again, InterBase's internal parsing routines
|
|
|
|
seems to bea good solution... Might change this on
|
|
|
|
platforms that have strptime()? Code is there and works,
|
|
|
|
but the functions existence is not yet tested...
|
|
|
|
ask Sascha?
|
2000-05-10 04:30:23 +08:00
|
|
|
*/
|
2000-05-12 11:02:14 +08:00
|
|
|
convert_to_string(b_var);
|
|
|
|
var->sqldata = (void ISC_FAR *)b_var->value.str.val;
|
|
|
|
var->sqllen = b_var->value.str.len;
|
|
|
|
var->sqltype = SQL_TEXT;
|
|
|
|
#else
|
2000-03-13 03:44:23 +08:00
|
|
|
{
|
|
|
|
struct tm t;
|
2000-05-12 11:02:14 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
convert_to_string(b_var);
|
2000-05-12 11:02:14 +08:00
|
|
|
switch (var->sqltype & ~1) {
|
|
|
|
case SQL_TIMESTAMP:
|
|
|
|
strptime(b_var->value.str.val, IBG(timestampformat), &t);
|
|
|
|
isc_encode_timestamp(&t, &buf[i].val.tsval);
|
|
|
|
var->sqldata = (void ISC_FAR *)(&buf[i].val.tsval);
|
|
|
|
break;
|
|
|
|
case SQL_TYPE_DATE:
|
|
|
|
strptime(b_var->value.str.val, IBG(dateformat), &t);
|
|
|
|
isc_encode_sql_date(&t, &buf[i].val.dtval);
|
|
|
|
var->sqldata = (void ISC_FAR *)(&buf[i].val.dtval);
|
|
|
|
break;
|
|
|
|
case SQL_TYPE_TIME:
|
|
|
|
strptime(b_var->value.str.val, IBG(timeformat), &t);
|
|
|
|
isc_encode_sql_time(&t, &buf[i].val.tmval);
|
|
|
|
var->sqldata = (void ISC_FAR *)(&buf[i].val.tmval);
|
|
|
|
break;
|
2000-03-13 03:44:23 +08:00
|
|
|
}
|
|
|
|
}
|
2000-05-12 11:02:14 +08:00
|
|
|
#endif
|
2000-03-13 03:44:23 +08:00
|
|
|
break;
|
2000-05-12 11:02:14 +08:00
|
|
|
#endif
|
2000-03-13 03:44:23 +08:00
|
|
|
case SQL_BLOB:
|
|
|
|
{
|
|
|
|
ibase_blob_handle *ib_blob_id;
|
2000-04-18 10:52:45 +08:00
|
|
|
if (b_var->type != IS_STRING
|
|
|
|
|| b_var->value.str.len != sizeof(ibase_blob_handle)
|
|
|
|
|| ((ibase_blob_handle *)(b_var->value.str.val))->bl_handle != 0) {
|
2000-03-13 03:44:23 +08:00
|
|
|
_php_ibase_module_error("invalid blob id string");
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
ib_blob_id = (ibase_blob_handle *)b_var->value.str.val;
|
|
|
|
|
|
|
|
var->sqldata = (void ISC_FAR *)&ib_blob_id->bl_qd;
|
|
|
|
}
|
1999-04-22 10:48:28 +08:00
|
|
|
break;
|
2000-03-13 03:44:23 +08:00
|
|
|
case SQL_ARRAY:
|
|
|
|
_php_ibase_module_error("binding arrays not supported yet");
|
|
|
|
return FAILURE;
|
|
|
|
break;
|
2000-04-18 10:52:45 +08:00
|
|
|
} /*switch*/
|
|
|
|
} /*for*/
|
2000-03-13 03:44:23 +08:00
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ _php_ibase_alloc_xsqlda() */
|
|
|
|
static void _php_ibase_alloc_xsqlda(XSQLDA *sqlda)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
XSQLVAR *var = sqlda->sqlvar;
|
|
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < sqlda->sqld; i++, var++) {
|
|
|
|
switch(var->sqltype & ~1) {
|
|
|
|
case SQL_TEXT:
|
|
|
|
var->sqldata = emalloc(sizeof(char)*(var->sqllen));
|
|
|
|
break;
|
|
|
|
case SQL_VARYING:
|
|
|
|
var->sqldata = emalloc(sizeof(char)*(var->sqllen+sizeof(short)));
|
|
|
|
break;
|
|
|
|
case SQL_SHORT:
|
|
|
|
var->sqldata = emalloc(sizeof(short));
|
|
|
|
break;
|
|
|
|
case SQL_LONG:
|
|
|
|
var->sqldata = emalloc(sizeof(long));
|
|
|
|
break;
|
|
|
|
case SQL_FLOAT:
|
|
|
|
var->sqldata = emalloc(sizeof(float));
|
|
|
|
break;
|
|
|
|
case SQL_DOUBLE:
|
|
|
|
var->sqldata = emalloc(sizeof(double));
|
|
|
|
break;
|
2000-05-10 04:30:23 +08:00
|
|
|
#ifdef SQL_INT64
|
|
|
|
case SQL_INT64:
|
|
|
|
var->sqldata = emalloc(sizeof(ISC_INT64));
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
#ifdef SQL_TIMESTAMP
|
|
|
|
case SQL_TIMESTAMP:
|
|
|
|
var->sqldata = emalloc(sizeof(ISC_TIMESTAMP));
|
|
|
|
break;
|
|
|
|
case SQL_TYPE_DATE:
|
|
|
|
var->sqldata = emalloc(sizeof(ISC_DATE));
|
|
|
|
break;
|
|
|
|
case SQL_TYPE_TIME:
|
|
|
|
var->sqldata = emalloc(sizeof(ISC_TIME));
|
|
|
|
break;
|
|
|
|
#else
|
2000-03-13 03:44:23 +08:00
|
|
|
case SQL_DATE:
|
2000-05-10 04:30:23 +08:00
|
|
|
#endif
|
2000-03-13 03:44:23 +08:00
|
|
|
case SQL_BLOB:
|
|
|
|
case SQL_ARRAY:
|
|
|
|
var->sqldata = emalloc(sizeof(ISC_QUAD));
|
|
|
|
break;
|
|
|
|
} /*switch*/
|
|
|
|
if (var->sqltype & 1) /* sql NULL flag */
|
|
|
|
var->sqlind = emalloc(sizeof(short));
|
|
|
|
else
|
|
|
|
var->sqlind = NULL;
|
|
|
|
} /* for*/
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ _php_ibase_exec() */
|
|
|
|
static int _php_ibase_exec(ibase_result **ib_resultp, ibase_query *ib_query, int argc, pval **args)
|
|
|
|
{
|
|
|
|
#define IB_RESULT (*ib_resultp)
|
|
|
|
XSQLDA *in_sqlda = NULL, *out_sqlda = NULL;
|
|
|
|
BIND_BUF *bind_buf = NULL;
|
|
|
|
int rv = FAILURE;
|
|
|
|
|
|
|
|
IB_RESULT = NULL;
|
|
|
|
|
|
|
|
/* allocate sqlda and output buffers */
|
|
|
|
if (ib_query->out_sqlda) { /* output variables in select, select for update */
|
|
|
|
IB_RESULT = emalloc(sizeof(ibase_result));
|
|
|
|
IB_RESULT->link = ib_query->link;
|
|
|
|
IB_RESULT->trans = ib_query->trans;
|
|
|
|
IB_RESULT->stmt = ib_query->stmt;
|
|
|
|
IB_RESULT->drop_stmt = 0; /* when free result close but not drop!*/
|
|
|
|
out_sqlda = IB_RESULT->out_sqlda = emalloc(XSQLDA_LENGTH(ib_query->out_sqlda->sqld));
|
|
|
|
memcpy(out_sqlda,ib_query->out_sqlda,XSQLDA_LENGTH(ib_query->out_sqlda->sqld));
|
|
|
|
_php_ibase_alloc_xsqlda(out_sqlda);
|
|
|
|
|
|
|
|
if (ib_query->out_array) {
|
|
|
|
IB_RESULT->out_array = emalloc(sizeof(ibase_array)*ib_query->out_array_cnt);
|
|
|
|
memcpy(IB_RESULT->out_array, ib_query->out_array, sizeof(ibase_array)*ib_query->out_array_cnt);
|
|
|
|
} else {
|
|
|
|
IB_RESULT->out_array = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ib_query->in_sqlda) { /* has placeholders */
|
|
|
|
if (ib_query->in_sqlda->sqld != argc) {
|
2000-05-12 16:37:03 +08:00
|
|
|
_php_ibase_module_error("placeholders (%d) and variables (%d) mismatch", ib_query->in_sqlda->sqld, argc);
|
2000-03-13 03:44:23 +08:00
|
|
|
goto _php_ibase_exec_error; /* yes mommy, goto! */
|
|
|
|
}
|
|
|
|
in_sqlda = emalloc(XSQLDA_LENGTH(ib_query->in_sqlda->sqld));
|
2000-04-18 10:52:45 +08:00
|
|
|
memcpy(in_sqlda, ib_query->in_sqlda, XSQLDA_LENGTH(ib_query->in_sqlda->sqld));
|
2000-03-13 03:44:23 +08:00
|
|
|
bind_buf = emalloc(sizeof(BIND_BUF) * ib_query->in_sqlda->sqld);
|
2000-04-18 10:52:45 +08:00
|
|
|
if (_php_ibase_bind(in_sqlda, args, bind_buf) == FAILURE) {
|
2000-04-30 13:46:04 +08:00
|
|
|
IBDEBUG("Could not bind input XSQLDA... (_php_ibase_exec)");
|
2000-03-13 03:44:23 +08:00
|
|
|
goto _php_ibase_exec_error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-05-10 04:30:23 +08:00
|
|
|
if (isc_dsql_execute(IB_STATUS, &ib_query->trans, &ib_query->stmt, ib_query->dialect, in_sqlda)) {
|
2000-04-30 13:46:04 +08:00
|
|
|
IBDEBUG("Could not execute query... (_php_ibase_exec)");
|
2000-03-13 03:44:23 +08:00
|
|
|
_php_ibase_error();
|
|
|
|
goto _php_ibase_exec_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = SUCCESS;
|
|
|
|
|
|
|
|
_php_ibase_exec_error: /* I'm a bad boy... */
|
|
|
|
|
|
|
|
if (in_sqlda)
|
|
|
|
efree(in_sqlda);
|
|
|
|
if (bind_buf)
|
|
|
|
efree(bind_buf);
|
|
|
|
|
|
|
|
if (rv == FAILURE) {
|
|
|
|
if (IB_RESULT) {
|
|
|
|
efree(IB_RESULT);
|
|
|
|
IB_RESULT = NULL;
|
|
|
|
}
|
|
|
|
if (out_sqlda)
|
|
|
|
efree(out_sqlda);
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
#undef IB_RESULT
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ proto int ibase_trans([int trans_args [, int link_identifier]])
|
|
|
|
Start transaction */
|
|
|
|
PHP_FUNCTION(ibase_trans)
|
|
|
|
{
|
2000-04-30 13:46:04 +08:00
|
|
|
pval ***args;
|
2000-03-13 03:44:23 +08:00
|
|
|
char tpb[20], *tpbp = NULL;
|
|
|
|
long trans_argl = 0;
|
|
|
|
int tpb_len = 0, argn, link_id, trans_n;
|
|
|
|
ibase_db_link *ib_link;
|
|
|
|
IBLS_FETCH();
|
|
|
|
|
|
|
|
|
|
|
|
RESET_ERRMSG;
|
|
|
|
|
|
|
|
link_id = IBG(default_link);
|
|
|
|
|
|
|
|
/* TODO: multi-databases trans */
|
|
|
|
argn = ARG_COUNT(ht);
|
|
|
|
if (argn < 0 || argn > 2) {
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argn) {
|
2000-04-30 13:46:04 +08:00
|
|
|
args = (pval ***) emalloc(sizeof(pval **)*argn);
|
|
|
|
if (zend_get_parameters_array_ex(argn, args) == FAILURE) {
|
2000-03-13 03:44:23 +08:00
|
|
|
efree(args);
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
argn--;
|
2000-04-30 13:46:04 +08:00
|
|
|
convert_to_long_ex(args[argn]); /* last arg - trans_args */
|
|
|
|
trans_argl = (*args[argn])->value.lval;
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
/* TODO: multi
|
|
|
|
do {
|
|
|
|
link_id[argn] = args[argn];
|
2000-04-30 13:46:04 +08:00
|
|
|
convert_to_long_ex(args[argn]);
|
|
|
|
GET_LINK_TRANS((*args[argn])->value.lval, ib_link[argn], trans_n);
|
|
|
|
} while(argn--);
|
|
|
|
*/
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
if (argn) {
|
|
|
|
argn--;
|
2000-04-30 13:46:04 +08:00
|
|
|
convert_to_long_ex(args[argn]);
|
|
|
|
link_id = (*args[argn])->value.lval;
|
2000-03-13 03:44:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
efree(args);
|
|
|
|
}
|
|
|
|
|
|
|
|
GET_LINK_TRANS(link_id, ib_link, trans_n);
|
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
if (trans_argl ) {
|
2000-03-13 03:44:23 +08:00
|
|
|
tpb[tpb_len++] = isc_tpb_version3;
|
|
|
|
tpbp = tpb;
|
|
|
|
/* access mode */
|
2000-04-18 10:52:45 +08:00
|
|
|
if (trans_argl & PHP_IBASE_READ) /* READ ONLY TRANSACTION */
|
2000-03-13 03:44:23 +08:00
|
|
|
tpb[tpb_len++] = isc_tpb_read;
|
|
|
|
else
|
|
|
|
tpb[tpb_len++] = isc_tpb_write;
|
|
|
|
/* isolation level */
|
2000-04-18 10:52:45 +08:00
|
|
|
if (trans_argl & PHP_IBASE_COMMITTED) {
|
2000-03-13 03:44:23 +08:00
|
|
|
tpb[tpb_len++] = isc_tpb_read_committed;
|
2000-04-18 10:52:45 +08:00
|
|
|
} else if (trans_argl & PHP_IBASE_CONSISTENCY)
|
2000-03-13 03:44:23 +08:00
|
|
|
tpb[tpb_len++] = isc_tpb_consistency;
|
|
|
|
else
|
|
|
|
tpb[tpb_len++] = isc_tpb_concurrency;
|
|
|
|
/* lock resolution */
|
2000-04-18 10:52:45 +08:00
|
|
|
if (trans_argl & PHP_IBASE_NOWAIT)
|
2000-03-13 03:44:23 +08:00
|
|
|
tpb[tpb_len++] = isc_tpb_nowait;
|
|
|
|
else
|
|
|
|
tpb[tpb_len++] = isc_tpb_wait;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* find empty transaction slot */
|
|
|
|
for (trans_n = 0; trans_n < IBASE_TRANS_ON_LINK
|
|
|
|
&& ib_link->trans[trans_n]; trans_n++)
|
|
|
|
;
|
|
|
|
if (trans_n == IBASE_TRANS_ON_LINK) {
|
|
|
|
_php_ibase_module_error("too many transactions on link");
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isc_start_transaction(IB_STATUS, &ib_link->trans[trans_n], 1, &ib_link->link, tpb_len, tpbp)) {
|
|
|
|
_php_ibase_error();
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
2000-04-30 13:46:04 +08:00
|
|
|
return_value->value.lval = link_id * IBASE_TRANS_ON_LINK + trans_n;
|
|
|
|
return_value->type = IS_RESOURCE;
|
2000-03-13 03:44:23 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ _php_ibase_def_trans() */
|
|
|
|
/* open default transaction */
|
|
|
|
static int _php_ibase_def_trans(ibase_db_link * ib_link, int trans_n)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (trans_n == 0 && ib_link->trans[0] == NULL) {
|
|
|
|
if (isc_start_transaction(IB_STATUS, &ib_link->trans[0], 1, &ib_link->link, 0, NULL)) {
|
|
|
|
_php_ibase_error();
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
/*}}}*/
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ _php_ibase_trans_end() */
|
|
|
|
#define COMMIT 1
|
|
|
|
#define ROLLBACK 0
|
|
|
|
static void _php_ibase_trans_end(INTERNAL_FUNCTION_PARAMETERS, int commit)
|
|
|
|
{
|
2000-04-30 13:46:04 +08:00
|
|
|
pval **link_trans_arg;
|
2000-03-13 03:44:23 +08:00
|
|
|
int link_id = 0, trans_n = 0;
|
|
|
|
ibase_db_link *ib_link;
|
|
|
|
IBLS_FETCH();
|
|
|
|
|
|
|
|
|
|
|
|
RESET_ERRMSG;
|
|
|
|
|
|
|
|
switch (ARG_COUNT(ht)) {
|
|
|
|
case 0:
|
|
|
|
link_id = IBG(default_link);
|
|
|
|
break;
|
|
|
|
case 1:
|
2000-04-30 13:46:04 +08:00
|
|
|
if (zend_get_parameters_ex(1, &link_trans_arg) == FAILURE) {
|
1999-04-22 10:48:28 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
2000-04-30 13:46:04 +08:00
|
|
|
convert_to_long_ex(link_trans_arg);
|
|
|
|
link_id = (*link_trans_arg)->value.lval;
|
1999-04-22 10:48:28 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
break;
|
|
|
|
}
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
GET_LINK_TRANS(link_id, ib_link, trans_n);
|
|
|
|
|
|
|
|
if (commit) {
|
|
|
|
if (isc_commit_transaction(IB_STATUS, &ib_link->trans[trans_n])) {
|
|
|
|
_php_ibase_error();
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (isc_rollback_transaction(IB_STATUS, &ib_link->trans[trans_n])) {
|
|
|
|
_php_ibase_error();
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ib_link->trans[trans_n] = NULL;
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
RETURN_TRUE;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ proto int ibase_commit([int link_identifier,] int trans_number)
|
|
|
|
Commit transaction */
|
|
|
|
PHP_FUNCTION(ibase_commit)
|
|
|
|
{
|
|
|
|
_php_ibase_trans_end(INTERNAL_FUNCTION_PARAM_PASSTHRU, COMMIT);
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ proto int ibase_rollback([int link_identifier,] int trans_number)
|
|
|
|
Roolback transaction */
|
|
|
|
PHP_FUNCTION(ibase_rollback)
|
|
|
|
{
|
|
|
|
_php_ibase_trans_end(INTERNAL_FUNCTION_PARAM_PASSTHRU, ROLLBACK);
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ proto int ibase_query([int link_identifier,] string query [, int bind_args])
|
|
|
|
Execute a query */
|
|
|
|
PHP_FUNCTION(ibase_query)
|
|
|
|
{
|
2000-04-30 13:46:04 +08:00
|
|
|
pval ***args, **bind_args = NULL;
|
2000-03-13 03:44:23 +08:00
|
|
|
int i, link_id = 0, trans_n = 0, bind_n = 0;
|
|
|
|
char *query;
|
|
|
|
ibase_db_link *ib_link;
|
|
|
|
ibase_query *ib_query;
|
|
|
|
ibase_result *ib_result;
|
|
|
|
IBLS_FETCH();
|
|
|
|
|
|
|
|
|
|
|
|
RESET_ERRMSG;
|
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
if (ARG_COUNT(ht) < 1) {
|
2000-03-13 03:44:23 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
2000-04-30 13:46:04 +08:00
|
|
|
args = (pval ***) emalloc(sizeof(pval **)*ARG_COUNT(ht));
|
|
|
|
if (zend_get_parameters_array_ex(ARG_COUNT(ht), args) == FAILURE) {
|
2000-03-13 03:44:23 +08:00
|
|
|
efree(args);
|
1999-04-22 10:48:28 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
i = 0;
|
2000-04-30 13:46:04 +08:00
|
|
|
if ((*args[i])->type == IS_RESOURCE) { /* link or transaction argument */
|
|
|
|
convert_to_long_ex(args[i]);
|
|
|
|
link_id = (*args[i])->value.lval;
|
2000-03-13 03:44:23 +08:00
|
|
|
i++; /* next arg */
|
|
|
|
} else {
|
|
|
|
link_id = IBG(default_link);
|
|
|
|
}
|
|
|
|
|
|
|
|
GET_LINK_TRANS(link_id, ib_link, trans_n);
|
|
|
|
|
2000-04-30 13:46:04 +08:00
|
|
|
if ((*args[i])->type == IS_STRING) { /* query argument */
|
|
|
|
convert_to_string_ex(args[i]);
|
|
|
|
query = (*args[i])->value.str.val;
|
2000-03-13 03:44:23 +08:00
|
|
|
i++; /* next arg */
|
|
|
|
} else {
|
|
|
|
_php_ibase_module_error("query argument missed");
|
|
|
|
efree(args);
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ARG_COUNT(ht) > i) { /* have variables to bind */
|
2000-04-30 13:46:04 +08:00
|
|
|
/* XXX Remove or fix??? Variable placeholders and binding makes
|
|
|
|
absolutely no sense if not using a prepared SQL statement.
|
|
|
|
*/
|
2000-03-13 03:44:23 +08:00
|
|
|
bind_n = ARG_COUNT(ht) - i;
|
2000-04-30 13:46:04 +08:00
|
|
|
bind_args = args[i];
|
2000-03-13 03:44:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* open default transaction */
|
|
|
|
if (_php_ibase_def_trans(ib_link, trans_n) == FAILURE) {
|
|
|
|
efree(args);
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
2000-05-10 04:30:23 +08:00
|
|
|
if (_php_ibase_alloc_query(&ib_query, ib_link->link, ib_link->trans[trans_n], query, ib_link->dialect) == FAILURE) {
|
2000-03-13 03:44:23 +08:00
|
|
|
efree(args);
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_php_ibase_exec(&ib_result, ib_query, bind_n, bind_args) == FAILURE) {
|
|
|
|
_php_ibase_free_query(ib_query);
|
|
|
|
efree(args);
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
efree(args);
|
|
|
|
|
|
|
|
if (ib_result) { /* select statement */
|
|
|
|
ib_result->drop_stmt = 1; /* drop stmt when free result */
|
|
|
|
ib_query->stmt = NULL; /* keep stmt when free query */
|
|
|
|
_php_ibase_free_query(ib_query);
|
2000-04-18 10:52:45 +08:00
|
|
|
ZEND_REGISTER_RESOURCE(return_value, ib_result, IBG(le_result));
|
2000-03-13 03:44:23 +08:00
|
|
|
} else {
|
|
|
|
_php_ibase_free_query(ib_query);
|
|
|
|
RETURN_TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ _php_ibase_var_pval() */
|
|
|
|
static int _php_ibase_var_pval(pval *val, void *data, int type, int len, int scale, int flag)
|
|
|
|
{
|
|
|
|
char string_data[255];
|
|
|
|
|
|
|
|
switch(type & ~1) {
|
|
|
|
case SQL_VARYING:
|
|
|
|
len = ((IBASE_VCHAR *) data)->var_len;
|
|
|
|
data = ((IBASE_VCHAR *) data)->var_str;
|
|
|
|
/* fallout */
|
|
|
|
case SQL_TEXT:
|
|
|
|
val->value.str.val = (char *)emalloc(sizeof(char)*(len+1));
|
|
|
|
strncpy(val->value.str.val, data, len);
|
|
|
|
if (PG(magic_quotes_runtime)) {
|
2000-04-18 10:52:45 +08:00
|
|
|
/*
|
2000-03-13 03:44:23 +08:00
|
|
|
char *tmp = val->value.str.val;
|
2000-04-18 10:52:45 +08:00
|
|
|
*/
|
2000-03-13 03:44:23 +08:00
|
|
|
val->value.str.val = php_addslashes(val->value.str.val, len, &len, 0);
|
2000-04-18 10:52:45 +08:00
|
|
|
/*
|
2000-03-13 03:44:23 +08:00
|
|
|
efree(tmp);
|
2000-04-18 10:52:45 +08:00
|
|
|
*/
|
2000-03-13 03:44:23 +08:00
|
|
|
}
|
|
|
|
val->type = IS_STRING;
|
|
|
|
val->value.str.len = len;
|
|
|
|
break;
|
|
|
|
case SQL_LONG:
|
|
|
|
if (scale) {
|
|
|
|
int j, f = 1;
|
|
|
|
float n = *(long *)(data);
|
|
|
|
|
|
|
|
for (j = 0; j < -scale; j++)
|
|
|
|
f *= 10;
|
|
|
|
val->type = IS_STRING;
|
|
|
|
val->value.str.len = sprintf(string_data, "%.*f", -scale, n / f);
|
|
|
|
val->value.str.val = estrdup(string_data);
|
2000-04-18 10:52:45 +08:00
|
|
|
} else {
|
2000-03-13 03:44:23 +08:00
|
|
|
val->type = IS_LONG;
|
|
|
|
val->value.lval = *(long *)(data);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SQL_SHORT:
|
|
|
|
val->type = IS_LONG;
|
|
|
|
val->value.lval = *(short *)(data);
|
|
|
|
break;
|
|
|
|
case SQL_FLOAT:
|
|
|
|
val->type = IS_DOUBLE;
|
|
|
|
val->value.dval = *(float *)(data);
|
|
|
|
break;
|
|
|
|
case SQL_DOUBLE:
|
|
|
|
if (scale) {
|
|
|
|
val->type = IS_STRING;
|
|
|
|
val->value.str.len = sprintf(string_data, "%.*f", -scale, *(double *)data);
|
|
|
|
val->value.str.val = estrdup(string_data);
|
2000-04-18 10:52:45 +08:00
|
|
|
/*
|
|
|
|
val->value.str.val = string_data;
|
|
|
|
*/
|
|
|
|
} else {
|
2000-03-13 03:44:23 +08:00
|
|
|
val->type = IS_DOUBLE;
|
|
|
|
val->value.dval = *(double *)data;
|
|
|
|
}
|
|
|
|
break;
|
2000-05-10 04:30:23 +08:00
|
|
|
#ifdef SQL_INT64
|
|
|
|
case SQL_INT64:
|
|
|
|
val->type = IS_STRING;
|
|
|
|
val->value.str.len = sprintf(string_data, "%Ld.%Ld",
|
|
|
|
(ISC_INT64) (*(ISC_INT64 *)data / (int) pow(10.0, (double) -scale)),
|
|
|
|
(ISC_INT64) abs((*(ISC_INT64 *)data % (int) pow(10.0, (double) -scale))));
|
|
|
|
val->value.str.val = estrdup(string_data);
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
#ifndef SQL_TIMESTAMP
|
|
|
|
case SQL_DATE:
|
|
|
|
#else
|
|
|
|
case SQL_TIMESTAMP:
|
|
|
|
case SQL_TYPE_DATE:
|
|
|
|
case SQL_TYPE_TIME:
|
|
|
|
#endif
|
|
|
|
{
|
2000-03-13 03:44:23 +08:00
|
|
|
struct tm t;
|
2000-05-12 11:02:14 +08:00
|
|
|
char *format = NULL;
|
2000-03-13 03:44:23 +08:00
|
|
|
long timestamp = -1;
|
2000-05-12 11:02:14 +08:00
|
|
|
|
|
|
|
#ifndef SQL_TIMESTAMP
|
2000-03-13 03:44:23 +08:00
|
|
|
isc_decode_date((ISC_QUAD *) data, &t);
|
2000-05-12 11:02:14 +08:00
|
|
|
format = IBG(timestampformat);
|
2000-05-10 04:30:23 +08:00
|
|
|
#else
|
|
|
|
switch (type & ~1) {
|
|
|
|
case SQL_TIMESTAMP:
|
|
|
|
isc_decode_timestamp((ISC_TIMESTAMP *) data, &t);
|
2000-05-12 11:02:14 +08:00
|
|
|
format = IBG(timestampformat);
|
2000-05-10 04:30:23 +08:00
|
|
|
break;
|
|
|
|
case SQL_TYPE_DATE:
|
|
|
|
isc_decode_sql_date((ISC_DATE *) data, &t);
|
2000-05-12 11:02:14 +08:00
|
|
|
format = IBG(dateformat);
|
2000-05-10 04:30:23 +08:00
|
|
|
break;
|
|
|
|
case SQL_TYPE_TIME:
|
|
|
|
isc_decode_sql_time((ISC_TIME *) data, &t);
|
2000-05-12 11:02:14 +08:00
|
|
|
format = IBG(timeformat);
|
2000-05-10 04:30:23 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
2000-05-04 21:43:06 +08:00
|
|
|
/*
|
|
|
|
XXX - Might have to remove this later - seems that isc_decode_date()
|
|
|
|
always sets tm_isdst to 0, sometimes incorrectly (InterBase 6 bug?)
|
|
|
|
*/
|
|
|
|
t.tm_isdst = -1;
|
2000-03-13 03:44:23 +08:00
|
|
|
timestamp = mktime(&t);
|
|
|
|
#if HAVE_TM_ZONE
|
|
|
|
t.tm_zone = tzname[0];
|
|
|
|
#endif
|
2000-05-12 11:02:14 +08:00
|
|
|
if (flag & PHP_IBASE_UNIXTIME) {
|
2000-03-13 03:44:23 +08:00
|
|
|
val->type = IS_LONG;
|
|
|
|
val->value.lval = timestamp;
|
|
|
|
} else {
|
|
|
|
val->type = IS_STRING;
|
|
|
|
#if HAVE_STRFTIME
|
2000-05-12 11:02:14 +08:00
|
|
|
val->value.str.len = strftime(string_data, sizeof(string_data), format, &t);
|
2000-03-13 03:44:23 +08:00
|
|
|
#else
|
2000-05-12 11:02:14 +08:00
|
|
|
/* FIXME */
|
2000-03-13 03:44:23 +08:00
|
|
|
if (!t.tm_hour && !t.tm_min && !t.tm_sec)
|
|
|
|
val->value.str.len = sprintf(string_data, "%02d/%02d/%4d", t.tm_mon+1, t.tm_mday, t.tm_year+1900);
|
|
|
|
else
|
|
|
|
val->value.str.len = sprintf(string_data, "%02d/%02d/%4d %02d:%02d:%02d",
|
|
|
|
t.tm_mon+1, t.tm_mday, t.tm_year+1900, t.tm_hour, t.tm_min, t.tm_sec);
|
|
|
|
#endif
|
|
|
|
val->value.str.val = estrdup(string_data);
|
2000-04-18 10:52:45 +08:00
|
|
|
/*
|
|
|
|
val->value.str.val = string_data;
|
|
|
|
*/
|
2000-03-13 03:44:23 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return FAILURE;
|
2000-04-18 10:52:45 +08:00
|
|
|
} /* switch (type) */
|
2000-03-13 03:44:23 +08:00
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
/* {{{ _php_ibase_arr_pval() */
|
|
|
|
/* create multidimension array - resursion function
|
|
|
|
(*datap) argument changed */
|
|
|
|
static int _php_ibase_arr_pval(pval *ar_pval, char **datap, ibase_array *ib_array, int dim, int flag)
|
|
|
|
{
|
|
|
|
pval tmp;
|
|
|
|
int i, dim_len, l_bound, u_bound;
|
1999-04-22 10:48:28 +08:00
|
|
|
|
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
if (dim > 16) { /* InterBase limit */
|
2000-03-13 03:44:23 +08:00
|
|
|
_php_ibase_module_error("php module internal error in %s %d",__FILE__,__LINE__);
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
u_bound = ib_array->ar_desc.array_desc_bounds[dim].array_bound_upper;
|
|
|
|
l_bound = ib_array->ar_desc.array_desc_bounds[dim].array_bound_lower;
|
|
|
|
dim_len = 1 + u_bound - l_bound;
|
|
|
|
|
|
|
|
if (dim < ib_array->ar_desc.array_desc_dimensions - 1) { /* array again */
|
|
|
|
for (i = 0; i < dim_len; i++) {
|
|
|
|
/* recursion here */
|
|
|
|
if (_php_ibase_arr_pval(ar_pval, datap, ib_array, dim+1, flag) == FAILURE) {
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
}
|
2000-04-18 10:52:45 +08:00
|
|
|
} else { /* data at last */
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
array_init(ar_pval);
|
|
|
|
|
|
|
|
for (i = 0; i < dim_len; i++) {
|
|
|
|
if (_php_ibase_var_pval(&tmp, *datap, ib_array->el_type,
|
|
|
|
ib_array->ar_desc.array_desc_length,
|
|
|
|
ib_array->ar_desc.array_desc_scale,
|
|
|
|
flag) == FAILURE){
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
/* FIXME */
|
|
|
|
zend_hash_index_update(ar_pval->value.ht,
|
2000-04-30 13:46:04 +08:00
|
|
|
l_bound + i,
|
|
|
|
(void *) &tmp, sizeof(pval),NULL);
|
2000-03-13 03:44:23 +08:00
|
|
|
*datap += ib_array->el_size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ _php_ibase_fetch_hash() */
|
|
|
|
|
|
|
|
#define FETCH_ARRAY 1
|
|
|
|
#define FETCH_OBJECT 2
|
|
|
|
|
|
|
|
static void _php_ibase_fetch_hash(INTERNAL_FUNCTION_PARAMETERS, int fetch_type)
|
|
|
|
{
|
2000-04-18 10:52:45 +08:00
|
|
|
zval **result_arg, **flag_arg;
|
2000-03-13 03:44:23 +08:00
|
|
|
long flag = 0;
|
|
|
|
int i, arr_cnt;
|
|
|
|
ibase_result *ib_result;
|
|
|
|
XSQLVAR *var;
|
|
|
|
IBLS_FETCH();
|
|
|
|
|
|
|
|
RESET_ERRMSG;
|
|
|
|
|
|
|
|
switch(ARG_COUNT(ht)) {
|
|
|
|
case 1:
|
2000-04-18 10:52:45 +08:00
|
|
|
if (ARG_COUNT(ht)==1 && zend_get_parameters_ex(1, &result_arg)==FAILURE) {
|
2000-03-13 03:44:23 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 2:
|
2000-04-18 10:52:45 +08:00
|
|
|
if (ARG_COUNT(ht)==2 && zend_get_parameters_ex(2, &result_arg, &flag_arg)==FAILURE) {
|
2000-03-13 03:44:23 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
2000-04-18 10:52:45 +08:00
|
|
|
convert_to_long_ex(flag_arg);
|
|
|
|
flag = (*flag_arg)->value.lval;
|
2000-03-13 03:44:23 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
break;
|
|
|
|
}
|
2000-04-18 10:52:45 +08:00
|
|
|
|
|
|
|
ZEND_FETCH_RESOURCE(ib_result, ibase_result *, result_arg, -1, "InterBase result", IBG(le_result));
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
if (ib_result->out_sqlda == NULL) {
|
|
|
|
_php_ibase_module_error("trying to fetch results from a non-select query");
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isc_dsql_fetch(IB_STATUS, &ib_result->stmt, 1, ib_result->out_sqlda) == 100L) {
|
|
|
|
RETURN_FALSE; /* end of cursor */
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IB_STATUS[0] && IB_STATUS[1]) { /* error in fetch */
|
|
|
|
_php_ibase_error();
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fetch_type == FETCH_ARRAY) {
|
|
|
|
if (array_init(return_value)==FAILURE) {
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
2000-04-18 10:52:45 +08:00
|
|
|
} else if (fetch_type == FETCH_OBJECT) {
|
2000-03-13 03:44:23 +08:00
|
|
|
if (object_init(return_value)==FAILURE) {
|
1999-04-22 10:48:28 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
}
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
arr_cnt = 0;
|
|
|
|
var = ib_result->out_sqlda->sqlvar;
|
|
|
|
for (i = 0; i < ib_result->out_sqlda->sqld; i++, var++) {
|
2000-04-18 10:52:45 +08:00
|
|
|
if (((var->sqltype & 1) == 0) || *var->sqlind != -1) {
|
|
|
|
pval *tmp;
|
|
|
|
tmp = emalloc(sizeof(pval));
|
2000-03-13 03:44:23 +08:00
|
|
|
switch(var->sqltype & ~1) {
|
|
|
|
case SQL_VARYING:
|
|
|
|
case SQL_TEXT:
|
|
|
|
case SQL_SHORT:
|
|
|
|
case SQL_LONG:
|
|
|
|
case SQL_FLOAT:
|
|
|
|
case SQL_DOUBLE:
|
2000-05-10 04:30:23 +08:00
|
|
|
#ifdef SQL_INT64
|
|
|
|
case SQL_INT64:
|
|
|
|
#endif
|
2000-05-12 11:02:14 +08:00
|
|
|
#ifndef SQL_TIMESTAMP
|
2000-03-13 03:44:23 +08:00
|
|
|
case SQL_DATE:
|
2000-05-12 11:02:14 +08:00
|
|
|
#else
|
|
|
|
case SQL_TIMESTAMP:
|
|
|
|
case SQL_TYPE_DATE:
|
|
|
|
case SQL_TYPE_TIME:
|
|
|
|
#endif
|
2000-04-18 10:52:45 +08:00
|
|
|
_php_ibase_var_pval(tmp, var->sqldata, var->sqltype, var->sqllen, var->sqlscale, flag);
|
2000-03-13 03:44:23 +08:00
|
|
|
break;
|
|
|
|
case SQL_BLOB:
|
|
|
|
if (flag & PHP_IBASE_TEXT) { /* text ? */
|
|
|
|
int stat;
|
|
|
|
isc_blob_handle bl_handle = NULL;
|
|
|
|
ISC_LONG max_len = 0, cur_len = 0;
|
|
|
|
char bl_items[1], *bl_data, bl_info[20], *p;
|
|
|
|
|
|
|
|
if (isc_open_blob(IB_STATUS, &ib_result->link, &ib_result->trans, &bl_handle, (ISC_QUAD ISC_FAR *) var->sqldata)) {
|
|
|
|
_php_ibase_error();
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
bl_items[0] = isc_info_blob_total_length;
|
|
|
|
if (isc_blob_info(IB_STATUS,&bl_handle,sizeof(bl_items),bl_items,sizeof(bl_info),bl_info)) {
|
|
|
|
_php_ibase_error();
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* find total length of blob's data */
|
|
|
|
for (p = bl_info; *p != isc_info_end && p < bl_info+sizeof(bl_info);) {
|
|
|
|
int item_len, item = *p++;
|
|
|
|
item_len = (short)isc_vax_integer(p, 2);
|
|
|
|
p += 2;
|
|
|
|
if (item == isc_info_blob_total_length)
|
|
|
|
max_len = isc_vax_integer(p, item_len);
|
|
|
|
p += item_len;
|
|
|
|
}
|
|
|
|
|
|
|
|
bl_data = emalloc(max_len+1);
|
|
|
|
|
|
|
|
for (cur_len = stat = 0; stat == 0 && cur_len < max_len; ) {
|
|
|
|
unsigned short seg_len, max_seg = max_len-cur_len > USHRT_MAX ? USHRT_MAX : max_len-cur_len;
|
|
|
|
stat = isc_get_segment(IB_STATUS, &bl_handle, &seg_len, max_seg, &bl_data[cur_len]);
|
|
|
|
cur_len += seg_len;
|
2000-04-18 10:52:45 +08:00
|
|
|
if (cur_len > max_len) { /* never!*/
|
2000-03-13 03:44:23 +08:00
|
|
|
efree(bl_data);
|
|
|
|
_php_ibase_module_error("php module internal error in %s %d",__FILE__,__LINE__);
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IB_STATUS[0] && IB_STATUS[1] && (IB_STATUS[1] != isc_segstr_eof)) {
|
|
|
|
efree(bl_data);
|
|
|
|
_php_ibase_error();
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
bl_data[cur_len] = '\0';
|
|
|
|
if (isc_close_blob(IB_STATUS, &bl_handle)) {
|
|
|
|
efree(bl_data);
|
|
|
|
_php_ibase_error();
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
2000-04-18 10:52:45 +08:00
|
|
|
tmp->type = IS_STRING;
|
|
|
|
tmp->value.str.len = cur_len;
|
|
|
|
tmp->value.str.val = estrndup(bl_data, cur_len);
|
|
|
|
efree(bl_data);
|
2000-03-13 03:44:23 +08:00
|
|
|
} else { /* blob id only */
|
|
|
|
ISC_QUAD *bl_qd = (ISC_QUAD ISC_FAR *) var->sqldata;
|
|
|
|
ibase_blob_handle *ib_blob_id;
|
|
|
|
|
|
|
|
ib_blob_id = (ibase_blob_handle *) emalloc(sizeof(ibase_blob_handle));
|
|
|
|
|
|
|
|
ib_blob_id->link = ib_result->link;
|
|
|
|
ib_blob_id->trans_handle = ib_result->trans;
|
|
|
|
ib_blob_id->bl_qd.gds_quad_high = bl_qd->gds_quad_high;
|
|
|
|
ib_blob_id->bl_qd.gds_quad_low = bl_qd->gds_quad_low;
|
|
|
|
ib_blob_id->bl_handle = NULL;
|
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
tmp->type = IS_STRING;
|
|
|
|
tmp->value.str.len = sizeof(ibase_blob_handle);
|
|
|
|
tmp->value.str.val = estrndup((char *)ib_blob_id, sizeof(ibase_blob_handle));
|
|
|
|
efree(ib_blob_id);
|
2000-03-13 03:44:23 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SQL_ARRAY:{
|
|
|
|
ISC_QUAD ar_qd = *(ISC_QUAD ISC_FAR *) var->sqldata;
|
|
|
|
ibase_array *ib_array = &ib_result->out_array[arr_cnt];
|
|
|
|
void *ar_data;
|
|
|
|
char *tmp_ptr;
|
|
|
|
|
|
|
|
ar_data = emalloc(ib_array->ar_size);
|
|
|
|
|
|
|
|
if (isc_array_get_slice(IB_STATUS, &ib_result->link, &ib_result->trans,
|
2000-04-18 10:52:45 +08:00
|
|
|
&ar_qd, &ib_array->ar_desc, ar_data, &ib_array->ar_size)) {
|
2000-03-13 03:44:23 +08:00
|
|
|
_php_ibase_error();
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
tmp_ptr = ar_data; /* avoid changes in _arr_pval */
|
2000-04-18 10:52:45 +08:00
|
|
|
if (_php_ibase_arr_pval(tmp, &tmp_ptr, ib_array, 0, flag) == FAILURE) {
|
2000-03-13 03:44:23 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
efree(ar_data);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2000-04-18 10:52:45 +08:00
|
|
|
} /*switch*/
|
2000-03-13 03:44:23 +08:00
|
|
|
if (fetch_type & FETCH_ARRAY) {
|
2000-04-18 10:52:45 +08:00
|
|
|
/* FIXME
|
|
|
|
zend_hash_index_update(return_value->value.ht, i, (void *) &tmp, sizeof(pval *),NULL);
|
|
|
|
*/
|
|
|
|
switch (tmp->type) {
|
|
|
|
case IS_STRING:
|
|
|
|
add_index_stringl(return_value, i, tmp->value.str.val, tmp->value.str.len, 0);
|
|
|
|
break;
|
|
|
|
case IS_LONG:
|
|
|
|
add_index_long(return_value, i, tmp->value.lval);
|
|
|
|
break;
|
|
|
|
case IS_DOUBLE:
|
|
|
|
add_index_double(return_value, i, tmp->value.dval);
|
|
|
|
break;
|
|
|
|
}
|
2000-03-13 03:44:23 +08:00
|
|
|
} else {
|
2000-04-18 10:52:45 +08:00
|
|
|
/* FIXME
|
2000-03-13 03:44:23 +08:00
|
|
|
zend_hash_update(return_value->value.ht, var->aliasname, var->aliasname_length+1, (void *) &tmp, sizeof(pval), NULL);
|
2000-04-18 10:52:45 +08:00
|
|
|
*/
|
|
|
|
switch (tmp->type) {
|
|
|
|
case IS_STRING:
|
|
|
|
add_property_stringl(return_value, var->aliasname, tmp->value.str.val, tmp->value.str.len, 0);
|
|
|
|
break;
|
|
|
|
case IS_LONG:
|
|
|
|
add_property_long(return_value, var->aliasname, tmp->value.lval);
|
|
|
|
break;
|
|
|
|
case IS_DOUBLE:
|
|
|
|
add_property_double(return_value, var->aliasname, tmp->value.dval);
|
|
|
|
break;
|
|
|
|
}
|
2000-03-13 03:44:23 +08:00
|
|
|
}
|
2000-04-18 10:52:45 +08:00
|
|
|
efree(tmp);
|
|
|
|
} /* if not null */
|
2000-03-13 03:44:23 +08:00
|
|
|
if ((var->sqltype & ~1) == SQL_ARRAY) {
|
|
|
|
arr_cnt++;
|
|
|
|
}
|
2000-04-18 10:52:45 +08:00
|
|
|
} /*for field*/
|
2000-03-13 03:44:23 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ proto array ibase_fetch_row(int result [, int blob_flag])
|
|
|
|
Fetch a row from the results of a query */
|
|
|
|
PHP_FUNCTION(ibase_fetch_row)
|
|
|
|
{
|
|
|
|
_php_ibase_fetch_hash(INTERNAL_FUNCTION_PARAM_PASSTHRU, FETCH_ARRAY);
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ proto object ibase_fetch_object(int result [, int blob_flag])
|
|
|
|
Fetch a object from the results of a query */
|
|
|
|
PHP_FUNCTION(ibase_fetch_object)
|
|
|
|
{
|
|
|
|
_php_ibase_fetch_hash(INTERNAL_FUNCTION_PARAM_PASSTHRU, FETCH_OBJECT);
|
|
|
|
}
|
|
|
|
/* }}} */
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
/* {{{ proto int ibase_free_result(int result)
|
|
|
|
Free the memory used by a result */
|
|
|
|
PHP_FUNCTION(ibase_free_result)
|
|
|
|
{
|
2000-04-18 10:52:45 +08:00
|
|
|
zval **result_arg;
|
2000-03-13 03:44:23 +08:00
|
|
|
ibase_result *ib_result;
|
|
|
|
IBLS_FETCH();
|
|
|
|
|
|
|
|
RESET_ERRMSG;
|
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
if (ARG_COUNT(ht)!=1 || zend_get_parameters_ex(1, &result_arg)==FAILURE) {
|
2000-03-13 03:44:23 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
2000-04-30 13:46:04 +08:00
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
ZEND_FETCH_RESOURCE(ib_result, ibase_result *, result_arg, -1, "InterBase result", IBG(le_result));
|
|
|
|
zend_list_delete((*result_arg)->value.lval);
|
2000-03-13 03:44:23 +08:00
|
|
|
RETURN_TRUE;
|
|
|
|
}
|
|
|
|
/* }}} */
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
/* {{{ proto int ibase_prepare([int link_identifier,] string query)
|
|
|
|
Prepare a query for later execution */
|
|
|
|
PHP_FUNCTION(ibase_prepare)
|
|
|
|
{
|
2000-04-30 13:46:04 +08:00
|
|
|
zval **link_arg, **query_arg;
|
2000-03-13 03:44:23 +08:00
|
|
|
int link_id, trans_n = 0;
|
|
|
|
ibase_db_link *ib_link;
|
|
|
|
ibase_query *ib_query;
|
|
|
|
char *query;
|
|
|
|
IBLS_FETCH();
|
|
|
|
|
|
|
|
|
|
|
|
RESET_ERRMSG;
|
|
|
|
|
|
|
|
switch (ARG_COUNT(ht)) {
|
|
|
|
case 1:
|
2000-04-30 13:46:04 +08:00
|
|
|
if (zend_get_parameters_ex(1, &query_arg) == FAILURE) {
|
1999-04-22 10:48:28 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
2000-03-13 03:44:23 +08:00
|
|
|
link_id = IBG(default_link);
|
|
|
|
break;
|
|
|
|
case 2:
|
2000-04-30 13:46:04 +08:00
|
|
|
if (zend_get_parameters_ex(2, &link_arg, &query_arg) == FAILURE) {
|
2000-03-13 03:44:23 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
2000-04-30 13:46:04 +08:00
|
|
|
convert_to_long_ex(link_arg);
|
|
|
|
link_id = (*link_arg)->value.lval;
|
2000-03-13 03:44:23 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
GET_LINK_TRANS(link_id, ib_link, trans_n);
|
|
|
|
|
2000-04-30 13:46:04 +08:00
|
|
|
convert_to_string_ex(query_arg);
|
|
|
|
query = (*query_arg)->value.str.val;
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
/* open default transaction */
|
2000-04-18 10:52:45 +08:00
|
|
|
if (_php_ibase_def_trans(ib_link, trans_n) == FAILURE) {
|
2000-03-13 03:44:23 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
2000-05-10 04:30:23 +08:00
|
|
|
if (_php_ibase_alloc_query(&ib_query, ib_link->link, ib_link->trans[trans_n], query, ib_link->dialect) == FAILURE) {
|
2000-03-13 03:44:23 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
2000-04-30 13:46:04 +08:00
|
|
|
|
|
|
|
zend_list_addref(link_id);
|
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
ZEND_REGISTER_RESOURCE(return_value, ib_query, IBG(le_query));
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ proto int ibase_execute(int query [, int bind_args [, int ...])
|
|
|
|
Execute a previously prepared query */
|
|
|
|
PHP_FUNCTION(ibase_execute)
|
|
|
|
{
|
2000-04-30 13:46:04 +08:00
|
|
|
pval ***args, **bind_args = NULL;
|
2000-03-13 03:44:23 +08:00
|
|
|
ibase_query *ib_query;
|
|
|
|
ibase_result *ib_result;
|
|
|
|
IBLS_FETCH();
|
|
|
|
|
|
|
|
|
|
|
|
RESET_ERRMSG;
|
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
if (ARG_COUNT(ht) < 1) {
|
2000-03-13 03:44:23 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
2000-04-30 13:46:04 +08:00
|
|
|
args = (pval ***)emalloc(ARG_COUNT(ht) * sizeof(pval **));
|
|
|
|
if (zend_get_parameters_array_ex(ARG_COUNT(ht), args) == FAILURE) {
|
2000-03-13 03:44:23 +08:00
|
|
|
efree(args);
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
2000-04-30 13:46:04 +08:00
|
|
|
ZEND_FETCH_RESOURCE(ib_query, ibase_query *, args[0], -1, "InterBase query", IBG(le_query));
|
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
if (ARG_COUNT(ht) > 1) { /* have variables to bind */
|
2000-04-30 13:46:04 +08:00
|
|
|
bind_args = args[1];
|
2000-03-13 03:44:23 +08:00
|
|
|
}
|
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
if ( _php_ibase_exec(&ib_result, ib_query, ARG_COUNT(ht)-1, bind_args) == FAILURE) {
|
2000-03-13 03:44:23 +08:00
|
|
|
efree(args);
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
efree(args);
|
|
|
|
|
|
|
|
if (ib_result) { /* select statement */
|
2000-04-18 10:52:45 +08:00
|
|
|
ZEND_REGISTER_RESOURCE(return_value, ib_result, IBG(le_result));
|
2000-04-30 13:46:04 +08:00
|
|
|
} else {
|
|
|
|
RETURN_TRUE;
|
2000-03-13 03:44:23 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ proto int ibase_free_query(int query)
|
|
|
|
Free memory used by a query */
|
|
|
|
PHP_FUNCTION(ibase_free_query)
|
|
|
|
{
|
2000-04-30 13:46:04 +08:00
|
|
|
pval **query_arg;
|
2000-03-13 03:44:23 +08:00
|
|
|
ibase_query *ib_query;
|
|
|
|
IBLS_FETCH();
|
|
|
|
|
|
|
|
|
|
|
|
RESET_ERRMSG;
|
|
|
|
|
2000-04-30 13:46:04 +08:00
|
|
|
if (ARG_COUNT(ht)!=1 || zend_get_parameters_ex(1, &query_arg) == FAILURE) {
|
2000-03-13 03:44:23 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
2000-04-30 13:46:04 +08:00
|
|
|
ZEND_FETCH_RESOURCE(ib_query, ibase_query *, query_arg, -1, "InterBase query", IBG(le_query));
|
|
|
|
zend_list_delete((*query_arg)->value.lval);
|
2000-03-13 03:44:23 +08:00
|
|
|
RETURN_TRUE;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ proto int ibase_timefmt(string format)
|
2000-05-12 11:02:14 +08:00
|
|
|
Sets the format of timestamp, date and time columns returned from queries */
|
2000-03-13 03:44:23 +08:00
|
|
|
PHP_FUNCTION(ibase_timefmt)
|
|
|
|
{
|
2000-05-12 11:02:14 +08:00
|
|
|
#if HAVE_STRFTIME
|
|
|
|
pval ***args;
|
|
|
|
char *fmt = NULL;
|
|
|
|
int type = PHP_IBASE_TIMESTAMP;
|
2000-03-13 03:44:23 +08:00
|
|
|
IBLS_FETCH();
|
|
|
|
|
2000-05-12 11:02:14 +08:00
|
|
|
RESET_ERRMSG; /* ??? */
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
|
2000-05-12 11:02:14 +08:00
|
|
|
if (ARG_COUNT(ht) < 1 || ARG_COUNT(ht) > 2){
|
2000-03-13 03:44:23 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
2000-05-12 11:02:14 +08:00
|
|
|
|
|
|
|
args = (pval ***) emalloc(sizeof(pval **)*ARG_COUNT(ht));
|
|
|
|
if (zend_get_parameters_array_ex(ARG_COUNT(ht), args) == FAILURE) {
|
|
|
|
efree(args);
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (ARG_COUNT(ht)) {
|
|
|
|
case 2:
|
|
|
|
convert_to_long_ex(args[1]);
|
|
|
|
type = (*args[1])->value.lval;
|
|
|
|
case 1:
|
|
|
|
convert_to_string_ex(args[0]);
|
|
|
|
fmt = (*args[0])->value.str.val;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case PHP_IBASE_TIMESTAMP:
|
|
|
|
if (IBG(timestampformat))
|
|
|
|
DL_FREE(IBG(timestampformat));
|
|
|
|
IBG(timestampformat) = DL_STRDUP(fmt);
|
|
|
|
break;
|
|
|
|
case PHP_IBASE_DATE:
|
|
|
|
if (IBG(dateformat))
|
|
|
|
DL_FREE(IBG(dateformat));
|
|
|
|
IBG(dateformat) = DL_STRDUP(fmt);
|
|
|
|
break;
|
|
|
|
case PHP_IBASE_TIME:
|
|
|
|
if (IBG(timeformat))
|
|
|
|
DL_FREE(IBG(timeformat));
|
|
|
|
IBG(timeformat) = DL_STRDUP(fmt);
|
|
|
|
break;
|
|
|
|
}
|
2000-03-13 03:44:23 +08:00
|
|
|
|
2000-05-12 11:02:14 +08:00
|
|
|
efree(args);
|
2000-03-13 03:44:23 +08:00
|
|
|
RETURN_TRUE;
|
|
|
|
#else
|
|
|
|
_php_ibase_module_error("ibase_timefmt not supported on this platform");
|
|
|
|
RETURN_FALSE;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ proto int ibase_num_fields(int result)
|
|
|
|
Get the number of fields in result */
|
|
|
|
PHP_FUNCTION(ibase_num_fields)
|
|
|
|
{
|
2000-05-12 16:37:03 +08:00
|
|
|
pval **result;
|
2000-03-13 03:44:23 +08:00
|
|
|
int type;
|
|
|
|
ibase_result *ib_result;
|
|
|
|
|
|
|
|
|
|
|
|
RESET_ERRMSG;
|
|
|
|
|
2000-05-12 16:37:03 +08:00
|
|
|
if (ARG_COUNT(ht)!=1 || zend_get_parameters_ex(1, &result)==FAILURE) {
|
2000-03-13 03:44:23 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
2000-05-12 16:37:03 +08:00
|
|
|
ZEND_FETCH_RESOURCE(ib_result, ibase_result *, result, -1, "InterBase result", IBG(le_result));
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
if (ib_result->out_sqlda == NULL) {
|
|
|
|
_php_ibase_module_error("trying to get num fields from a non-select query");
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
RETURN_LONG(ib_result->out_sqlda->sqld);
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ proto array ibase_field_info(int result, int field_number)
|
|
|
|
Get information about a field */
|
|
|
|
PHP_FUNCTION(ibase_field_info)
|
|
|
|
{
|
2000-04-18 10:52:45 +08:00
|
|
|
pval *ret_val;
|
|
|
|
zval **result_arg, **field_arg;
|
2000-03-13 03:44:23 +08:00
|
|
|
ibase_result *ib_result;
|
|
|
|
char buf[30], *s;
|
|
|
|
int len;
|
|
|
|
XSQLVAR *var;
|
|
|
|
IBLS_FETCH();
|
|
|
|
|
|
|
|
|
|
|
|
RESET_ERRMSG;
|
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
if (ARG_COUNT(ht)!=2 || zend_get_parameters_ex(2, &result_arg, &field_arg)==FAILURE) {
|
2000-03-13 03:44:23 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
ZEND_FETCH_RESOURCE(ib_result, ibase_result *, result_arg, -1, "InterBase result", IBG(le_result));
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
if (ib_result->out_sqlda == NULL) {
|
|
|
|
_php_ibase_module_error("trying to get field info from a non-select query");
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
convert_to_long_ex(field_arg);
|
2000-03-13 03:44:23 +08:00
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
if ((*field_arg)->value.lval<0 || (*field_arg)->value.lval>=ib_result->out_sqlda->sqld)
|
2000-03-13 03:44:23 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
|
|
|
|
if (array_init(return_value)==FAILURE)
|
|
|
|
RETURN_FALSE;
|
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
var = ib_result->out_sqlda->sqlvar + (*field_arg)->value.lval;
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
/* FIXME */
|
|
|
|
add_get_index_stringl(return_value, 0, var->sqlname, var->sqlname_length, (void **) &ret_val, 1);
|
|
|
|
/*
|
|
|
|
zend_hash_pointer_update(return_value->value.ht, "name", sizeof(char)*5, ret_val);
|
|
|
|
*/
|
|
|
|
|
|
|
|
add_get_index_stringl(return_value, 1, var->aliasname, var->aliasname_length, (void **) &ret_val, 1);
|
|
|
|
/*
|
|
|
|
zend_hash_pointer_update(return_value->value.ht, "alias", sizeof(char)*6, ret_val);
|
|
|
|
*/
|
|
|
|
|
|
|
|
add_get_index_stringl(return_value, 2, var->relname, var->relname_length, (void **) &ret_val, 1);
|
|
|
|
/*
|
|
|
|
zend_hash_pointer_update(return_value->value.ht, "relation", sizeof(char)*9, ret_val);
|
|
|
|
*/
|
|
|
|
|
|
|
|
len = sprintf(buf, "%d", var->sqllen);
|
|
|
|
add_get_index_stringl(return_value, 3, buf, len, (void **) &ret_val, 1);
|
|
|
|
/*
|
|
|
|
zend_hash_pointer_update(return_value->value.ht, "length", sizeof(char)*7, ret_val);
|
|
|
|
*/
|
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
switch (var->sqltype & ~1) {
|
2000-05-12 11:02:14 +08:00
|
|
|
case SQL_TEXT: s = "TEXT"; break;
|
|
|
|
case SQL_VARYING: s = "VARYING"; break;
|
|
|
|
case SQL_SHORT: s = "SHORT"; break;
|
|
|
|
case SQL_LONG: s = "LONG"; break;
|
|
|
|
case SQL_FLOAT: s = "FLOAT"; break;
|
|
|
|
case SQL_DOUBLE: s = "DOUBLE"; break;
|
|
|
|
case SQL_D_FLOAT: s = "D_FLOAT"; break;
|
|
|
|
#ifdef SQL_INT64
|
|
|
|
case SQL_INT64: s = "INT64"; break;
|
|
|
|
#endif
|
|
|
|
#ifdef SQL_TIMESTAMP
|
|
|
|
case SQL_TIMESTAMP: s = "TIMESTAMP"; break;
|
|
|
|
case SQL_TYPE_DATE: s = "DATE"; break;
|
|
|
|
case SQL_TYPE_TIME: s = "TIME"; break;
|
|
|
|
#else
|
|
|
|
case SQL_DATE: s = "DATE"; break;
|
|
|
|
#endif
|
|
|
|
case SQL_BLOB: s = "BLOB"; break;
|
|
|
|
case SQL_ARRAY: s = "ARRAY"; break;
|
|
|
|
case SQL_QUAD: s = "QUAD"; break;
|
2000-03-13 03:44:23 +08:00
|
|
|
default:
|
|
|
|
sprintf(buf,"unknown (%d)", var->sqltype & ~1);
|
|
|
|
s = buf;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
add_get_index_stringl(return_value, 4, s, strlen(s), (void **) &ret_val, 1);
|
|
|
|
/*
|
|
|
|
zend_hash_pointer_update(return_value->value.ht, "type", sizeof(char)*5, ret_val);
|
|
|
|
*/
|
|
|
|
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* blobs ----------------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ _php_ibase_blob_info(isc_blob_handle bl_handle,IBASE_BLOBINFO *bl_info) */
|
|
|
|
static int _php_ibase_blob_info(isc_blob_handle bl_handle,IBASE_BLOBINFO *bl_info)
|
|
|
|
{
|
|
|
|
|
|
|
|
static char bl_items[] = {
|
|
|
|
isc_info_blob_num_segments,
|
|
|
|
isc_info_blob_max_segment,
|
|
|
|
isc_info_blob_total_length,
|
|
|
|
isc_info_blob_type
|
|
|
|
};
|
|
|
|
|
|
|
|
char bl_inf[sizeof(long)*8], *p;
|
|
|
|
|
|
|
|
|
|
|
|
bl_info->max_segment = 0;
|
|
|
|
bl_info->num_segments = 0;
|
|
|
|
bl_info->total_length = 0;
|
|
|
|
bl_info->bl_stream = 0;
|
|
|
|
|
|
|
|
if (isc_blob_info(IB_STATUS,&bl_handle,sizeof(bl_items),bl_items,sizeof(bl_inf),bl_inf)) {
|
|
|
|
_php_ibase_error();
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (p = bl_inf; *p != isc_info_end && p < bl_inf+sizeof(bl_inf);) {
|
|
|
|
int item_len, item = *p++;
|
|
|
|
item_len = (short)isc_vax_integer(p, 2);
|
|
|
|
p += 2;
|
2000-04-18 10:52:45 +08:00
|
|
|
switch (item) {
|
2000-03-13 03:44:23 +08:00
|
|
|
case isc_info_blob_num_segments:
|
|
|
|
bl_info->num_segments = isc_vax_integer(p, item_len);
|
|
|
|
break;
|
|
|
|
case isc_info_blob_max_segment:
|
|
|
|
bl_info->max_segment = isc_vax_integer(p, item_len);
|
|
|
|
break;
|
|
|
|
case isc_info_blob_total_length:
|
|
|
|
bl_info->total_length = isc_vax_integer(p, item_len);
|
|
|
|
break;
|
|
|
|
case isc_info_blob_type:
|
|
|
|
bl_info->bl_stream = isc_vax_integer(p, item_len);
|
|
|
|
break;
|
|
|
|
case isc_info_end:
|
|
|
|
break;
|
|
|
|
case isc_info_truncated:
|
|
|
|
case isc_info_error: /* hmm. don't think so...*/
|
|
|
|
_php_ibase_module_error("php module internal error in %s %d",__FILE__,__LINE__);
|
|
|
|
return FAILURE;
|
2000-04-18 10:52:45 +08:00
|
|
|
} /*switch*/
|
2000-03-13 03:44:23 +08:00
|
|
|
p += item_len;
|
2000-04-18 10:52:45 +08:00
|
|
|
} /*for*/
|
2000-03-13 03:44:23 +08:00
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ proto int ibase_blob_create([int link_identifier])
|
|
|
|
Create blob for adding data */
|
|
|
|
PHP_FUNCTION(ibase_blob_create)
|
|
|
|
{
|
|
|
|
pval *link_arg;
|
|
|
|
int trans_n, link_id = 0;
|
|
|
|
ibase_db_link *ib_link;
|
|
|
|
ibase_blob_handle *ib_blob;
|
|
|
|
IBLS_FETCH();
|
|
|
|
|
|
|
|
|
|
|
|
RESET_ERRMSG;
|
|
|
|
|
|
|
|
switch (ARG_COUNT(ht)) {
|
|
|
|
case 0:
|
|
|
|
link_id = IBG(default_link);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
if (getParameters(ht, 1, &link_arg) == FAILURE) {
|
1999-04-22 10:48:28 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
2000-03-13 03:44:23 +08:00
|
|
|
convert_to_long(link_arg);
|
|
|
|
link_id = link_arg->value.lval;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
break;
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
GET_LINK_TRANS(link_id, ib_link, trans_n);
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
/* open default transaction */
|
|
|
|
if(_php_ibase_def_trans(ib_link, trans_n) == FAILURE){
|
|
|
|
RETURN_FALSE;
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
ib_blob = (ibase_blob_handle *) emalloc(sizeof(ibase_blob_handle));
|
|
|
|
ib_blob->trans_handle = ib_link->trans[trans_n];
|
|
|
|
ib_blob->link = ib_link->link;
|
|
|
|
ib_blob->bl_handle = NULL;
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
if (isc_create_blob(IB_STATUS, &ib_blob->link, &ib_blob->trans_handle, &ib_blob->bl_handle,&ib_blob->bl_qd)) {
|
2000-03-13 03:44:23 +08:00
|
|
|
efree(ib_blob);
|
|
|
|
_php_ibase_error();
|
1999-04-22 10:48:28 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
RETURN_LONG(zend_list_insert(ib_blob, IBG(le_blob)));
|
|
|
|
}
|
|
|
|
/* }}} */
|
1999-04-22 10:48:28 +08:00
|
|
|
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
/* {{{ proto int ibase_blob_open(string blob_id)
|
|
|
|
Open blob for retriving data parts */
|
|
|
|
PHP_FUNCTION(ibase_blob_open)
|
|
|
|
{
|
|
|
|
pval *blob_arg;
|
|
|
|
ibase_blob_handle *ib_blob, *ib_blob_id;
|
|
|
|
IBLS_FETCH();
|
|
|
|
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
RESET_ERRMSG;
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
if (ARG_COUNT(ht)!=1 || getParameters(ht, 1, &blob_arg)==FAILURE) {
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
ib_blob = (ibase_blob_handle *) emalloc(sizeof(ibase_blob_handle));
|
|
|
|
|
|
|
|
GET_BLOB_ID_ARG(blob_arg,ib_blob_id);
|
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
if (ib_blob_id == NULL) { /* blob IS NULL or argument unset */
|
2000-03-13 03:44:23 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
ib_blob->link = ib_blob_id->link;
|
|
|
|
ib_blob->trans_handle = ib_blob_id->trans_handle;
|
|
|
|
ib_blob->bl_qd.gds_quad_high = ib_blob_id->bl_qd.gds_quad_high;
|
|
|
|
ib_blob->bl_qd.gds_quad_low = ib_blob_id->bl_qd.gds_quad_low;
|
|
|
|
ib_blob->bl_handle = NULL;
|
2000-04-18 10:52:45 +08:00
|
|
|
if (isc_open_blob(IB_STATUS, &ib_blob->link, &ib_blob->trans_handle, &ib_blob->bl_handle, &ib_blob->bl_qd)) {
|
2000-03-13 03:44:23 +08:00
|
|
|
efree(ib_blob);
|
|
|
|
_php_ibase_error();
|
1999-04-22 10:48:28 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
RETURN_LONG(zend_list_insert(ib_blob, IBG(le_blob)));
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
/* {{{ proto int ibase_blob_add(int blob_id, string data)
|
|
|
|
Add data into created blob */
|
|
|
|
PHP_FUNCTION(ibase_blob_add)
|
1999-04-22 10:48:28 +08:00
|
|
|
{
|
2000-03-13 03:44:23 +08:00
|
|
|
pval *blob_arg,*string_arg;
|
|
|
|
ibase_blob_handle *ib_blob;
|
|
|
|
IBLS_FETCH();
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
RESET_ERRMSG;
|
|
|
|
|
|
|
|
if (ARG_COUNT(ht)!=2 || getParameters(ht, 2, &blob_arg, &string_arg)==FAILURE) {
|
1999-04-22 10:48:28 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
GET_BLOB_HANDLE_ARG(blob_arg, ib_blob);
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
convert_to_string(string_arg);
|
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
if (isc_put_segment(IB_STATUS, &ib_blob->bl_handle, string_arg->value.str.len, string_arg->value.str.val)) {
|
2000-03-13 03:44:23 +08:00
|
|
|
_php_ibase_error();
|
1999-04-22 10:48:28 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
RETURN_TRUE;
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
/* {{{ proto string ibase_blob_get(int blob_id, int len)
|
|
|
|
Get len bytes data from open blob */
|
|
|
|
PHP_FUNCTION(ibase_blob_get)
|
1999-04-22 10:48:28 +08:00
|
|
|
{
|
2000-03-13 03:44:23 +08:00
|
|
|
pval *blob_arg, *len_arg;
|
|
|
|
int stat;
|
|
|
|
char *bl_data;
|
|
|
|
unsigned short max_len = 0, cur_len, seg_len;
|
|
|
|
ibase_blob_handle *ib_blob;
|
|
|
|
IBLS_FETCH();
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
RESET_ERRMSG;
|
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
if (ARG_COUNT(ht) != 2 || getParameters(ht, 2, &blob_arg, &len_arg) == FAILURE) {
|
2000-03-13 03:44:23 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_to_long(len_arg);
|
|
|
|
max_len = len_arg->value.lval;
|
|
|
|
|
|
|
|
GET_BLOB_HANDLE_ARG(blob_arg, ib_blob);
|
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
if (ib_blob->bl_qd.gds_quad_high || ib_blob->bl_qd.gds_quad_low) { /*not null ?*/
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
bl_data = emalloc(max_len+1);
|
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
for (cur_len = stat = 0; stat == 0; ) {
|
2000-03-13 03:44:23 +08:00
|
|
|
stat = isc_get_segment(IB_STATUS, &ib_blob->bl_handle, &seg_len, max_len-cur_len, &bl_data[cur_len]);
|
|
|
|
cur_len += seg_len;
|
2000-04-18 10:52:45 +08:00
|
|
|
if (cur_len > max_len) { /* never!*/
|
2000-03-13 03:44:23 +08:00
|
|
|
efree(bl_data);
|
|
|
|
_php_ibase_module_error("php module internal error in %s %d",__FILE__,__LINE__);
|
1999-04-22 10:48:28 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
2000-03-13 03:44:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bl_data[cur_len] = '\0';
|
2000-04-18 10:52:45 +08:00
|
|
|
if (IB_STATUS[0] && (IB_STATUS[1] != isc_segstr_eof && IB_STATUS[1] != isc_segment)) {
|
2000-03-13 03:44:23 +08:00
|
|
|
efree(bl_data);
|
|
|
|
_php_ibase_error();
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
RETURN_STRINGL(bl_data,cur_len,0);
|
2000-04-18 10:52:45 +08:00
|
|
|
} else { /* null blob */
|
2000-03-13 03:44:23 +08:00
|
|
|
RETURN_STRING("",1); /* empty string */
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
2000-03-13 03:44:23 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
#define BLOB_CLOSE 1
|
|
|
|
#define BLOB_CANCEL 2
|
|
|
|
|
|
|
|
/* {{{ _php_ibase_blob_end() */
|
|
|
|
/* Close or Cancel created or Close open blob */
|
|
|
|
static void _php_ibase_blob_end(INTERNAL_FUNCTION_PARAMETERS, int bl_end)
|
|
|
|
{
|
|
|
|
pval *blob_arg;
|
|
|
|
ibase_blob_handle *ib_blob;
|
|
|
|
IBLS_FETCH();
|
|
|
|
|
|
|
|
|
|
|
|
RESET_ERRMSG;
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
if (ARG_COUNT(ht)!=1 || getParameters(ht, 1, &blob_arg)==FAILURE) {
|
|
|
|
WRONG_PARAM_COUNT;
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
GET_BLOB_HANDLE_ARG(blob_arg, ib_blob);
|
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
if (bl_end == BLOB_CLOSE) { /* return id here */
|
|
|
|
if (ib_blob->bl_qd.gds_quad_high || ib_blob->bl_qd.gds_quad_low) { /*not null ?*/
|
|
|
|
if (isc_close_blob(IB_STATUS, &ib_blob->bl_handle)) {
|
2000-03-13 03:44:23 +08:00
|
|
|
_php_ibase_error();
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ib_blob->bl_handle = NULL;
|
|
|
|
RETVAL_STRINGL((char *)ib_blob, sizeof(ibase_blob_handle), 1);
|
|
|
|
zend_list_delete(blob_arg->value.lval);
|
|
|
|
} else { /* discard created blob */
|
2000-04-18 10:52:45 +08:00
|
|
|
if (isc_cancel_blob(IB_STATUS, &ib_blob->bl_handle)) {
|
2000-03-13 03:44:23 +08:00
|
|
|
_php_ibase_error();
|
1999-04-22 10:48:28 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
2000-03-13 03:44:23 +08:00
|
|
|
ib_blob->bl_handle = NULL;
|
|
|
|
zend_list_delete(blob_arg->value.lval);
|
|
|
|
RETURN_TRUE;
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
2000-03-13 03:44:23 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
/* {{{ proto int ibase_blob_close(int blob_id)
|
|
|
|
Close blob */
|
|
|
|
PHP_FUNCTION(ibase_blob_close)
|
|
|
|
{
|
|
|
|
_php_ibase_blob_end(INTERNAL_FUNCTION_PARAM_PASSTHRU,BLOB_CLOSE);
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
/* {{{ proto int ibase_blob_cancel(int blob_id)
|
|
|
|
Cancel creating blob */
|
|
|
|
PHP_FUNCTION(ibase_blob_cancel)
|
1999-04-22 10:48:28 +08:00
|
|
|
{
|
2000-03-13 03:44:23 +08:00
|
|
|
_php_ibase_blob_end(INTERNAL_FUNCTION_PARAM_PASSTHRU,BLOB_CANCEL);
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
|
|
/* {{{ proto object ibase_blob_info(string blob_id_str)
|
|
|
|
Return blob length and other useful info */
|
|
|
|
PHP_FUNCTION(ibase_blob_info)
|
|
|
|
{
|
|
|
|
pval *blob_arg, *result_var;
|
|
|
|
ibase_blob_handle *ib_blob_id;
|
|
|
|
IBASE_BLOBINFO bl_info;
|
|
|
|
IBLS_FETCH();
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
RESET_ERRMSG;
|
|
|
|
|
|
|
|
if (ARG_COUNT(ht)!=1 || getParameters(ht, 1, &blob_arg)==FAILURE) {
|
1999-04-22 10:48:28 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
GET_BLOB_ID_ARG(blob_arg, ib_blob_id);
|
|
|
|
|
|
|
|
if (array_init(return_value)==FAILURE){
|
1999-04-22 10:48:28 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
if (ib_blob_id->bl_qd.gds_quad_high || ib_blob_id->bl_qd.gds_quad_low) { /*not null ?*/
|
2000-03-13 03:44:23 +08:00
|
|
|
if (isc_open_blob(IB_STATUS, &ib_blob_id->link, &ib_blob_id->trans_handle,
|
2000-04-18 10:52:45 +08:00
|
|
|
&ib_blob_id->bl_handle, &ib_blob_id->bl_qd)) {
|
2000-03-13 03:44:23 +08:00
|
|
|
_php_ibase_error();
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
if (_php_ibase_blob_info(ib_blob_id->bl_handle,&bl_info)) {
|
2000-03-13 03:44:23 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
2000-04-18 10:52:45 +08:00
|
|
|
if (isc_close_blob(IB_STATUS, &ib_blob_id->bl_handle)) {
|
2000-03-13 03:44:23 +08:00
|
|
|
_php_ibase_error();
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
ib_blob_id->bl_handle = NULL;
|
2000-04-18 10:52:45 +08:00
|
|
|
} else { /* null blob, all values to zero */
|
2000-03-13 03:44:23 +08:00
|
|
|
bl_info.max_segment = 0;
|
|
|
|
bl_info.num_segments = 0;
|
|
|
|
bl_info.total_length = 0;
|
|
|
|
bl_info.bl_stream = 0;
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
/* FIXME */
|
|
|
|
add_get_index_long(return_value, 0, bl_info.total_length, (void **)&result_var);
|
|
|
|
/*
|
|
|
|
zend_hash_pointer_update(return_value->value.ht, "length", sizeof("length"), result_var);
|
|
|
|
*/
|
|
|
|
|
|
|
|
add_get_index_long(return_value, 1, bl_info.num_segments, (void **)&result_var);
|
|
|
|
/*
|
|
|
|
zend_hash_pointer_update(return_value->value.ht, "numseg", sizeof("numseg"), result_var);
|
|
|
|
*/
|
|
|
|
|
|
|
|
add_get_index_long(return_value, 2, bl_info.max_segment, (void **)&result_var);
|
|
|
|
/*
|
|
|
|
zend_hash_pointer_update(return_value->value.ht, "maxseg", sizeof("maxseg"), result_var);
|
|
|
|
*/
|
|
|
|
|
|
|
|
add_get_index_long(return_value, 3, bl_info.bl_stream, (void **)&result_var);
|
|
|
|
/*
|
|
|
|
zend_hash_pointer_update(return_value->value.ht, "stream", sizeof("stream"), result_var);
|
|
|
|
*/
|
|
|
|
|
|
|
|
add_get_index_long(return_value, 4,
|
|
|
|
(!ib_blob_id->bl_qd.gds_quad_high
|
|
|
|
&& !ib_blob_id->bl_qd.gds_quad_low),
|
|
|
|
(void **)&result_var);
|
|
|
|
/*
|
|
|
|
zend_hash_pointer_update(return_value->value.ht, "isnull", sizeof("isnull"), result_var);
|
1999-04-22 10:48:28 +08:00
|
|
|
*/
|
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
/* {{{ proto int ibase_blob_echo(string blob_id_str)
|
|
|
|
Output blob contents to browser */
|
|
|
|
PHP_FUNCTION(ibase_blob_echo)
|
1999-04-22 10:48:28 +08:00
|
|
|
{
|
2000-03-13 03:44:23 +08:00
|
|
|
pval *blob_arg;
|
|
|
|
char bl_data[IBASE_BLOB_SEG];
|
|
|
|
unsigned short seg_len;
|
|
|
|
ibase_blob_handle *ib_blob_id;
|
|
|
|
|
|
|
|
|
|
|
|
IBLS_FETCH();
|
|
|
|
|
|
|
|
RESET_ERRMSG;
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
if (ARG_COUNT(ht)!=1 || getParameters(ht, 1, &blob_arg)==FAILURE) {
|
1999-04-22 10:48:28 +08:00
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
}
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
GET_BLOB_ID_ARG(blob_arg, ib_blob_id);
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
if (!php_header()) {
|
1999-04-22 10:48:28 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
2000-03-13 03:44:23 +08:00
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
if (ib_blob_id) { /*not null ?*/
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
if (isc_open_blob(IB_STATUS, &ib_blob_id->link, &ib_blob_id->trans_handle,
|
2000-04-18 10:52:45 +08:00
|
|
|
&ib_blob_id->bl_handle,&ib_blob_id->bl_qd)) {
|
2000-03-13 03:44:23 +08:00
|
|
|
_php_ibase_error();
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
while (!isc_get_segment(IB_STATUS, &ib_blob_id->bl_handle, &seg_len, sizeof(bl_data), bl_data)
|
|
|
|
|| IB_STATUS[1] == isc_segment) {
|
2000-03-13 03:44:23 +08:00
|
|
|
PHPWRITE(bl_data,seg_len);
|
|
|
|
}
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
if (IB_STATUS[0] && (IB_STATUS[1] != isc_segstr_eof)) {
|
2000-03-13 03:44:23 +08:00
|
|
|
_php_ibase_error();
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
if (isc_close_blob(IB_STATUS, &ib_blob_id->bl_handle)) {
|
2000-03-13 03:44:23 +08:00
|
|
|
_php_ibase_error();
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
ib_blob_id->bl_handle = NULL;
|
2000-04-18 10:52:45 +08:00
|
|
|
} /* not null ? */
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
RETURN_TRUE;
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
/*
|
2000-03-13 03:44:23 +08:00
|
|
|
extern int le_fp, le_pp;
|
2000-04-18 10:52:45 +08:00
|
|
|
extern int wsa_fp;
|
|
|
|
*/
|
|
|
|
/*to handle reading and writing to windows sockets*/
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
/* {{{ proto string ibase_blob_import([link_identifier,] file_id)
|
|
|
|
Create blob, copy file in it, and close it */
|
|
|
|
|
|
|
|
PHP_FUNCTION(ibase_blob_import)
|
1999-04-22 10:48:28 +08:00
|
|
|
{
|
2000-04-18 10:52:45 +08:00
|
|
|
zval **link_arg, **file_arg;
|
2000-03-13 03:44:23 +08:00
|
|
|
int trans_n, type, link_id = 0, file_id, size, b;
|
|
|
|
int issock=0, socketd=0, *sock;
|
|
|
|
ibase_blob_handle ib_blob;
|
|
|
|
ibase_db_link *ib_link;
|
|
|
|
char bl_data[IBASE_BLOB_SEG]; /* FIXME? blob_seg_size parameter? */
|
|
|
|
FILE *fp;
|
|
|
|
IBLS_FETCH();
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
RESET_ERRMSG;
|
|
|
|
|
|
|
|
switch (ARG_COUNT(ht)) {
|
|
|
|
case 1:
|
2000-04-18 10:52:45 +08:00
|
|
|
if (zend_get_parameters_ex(1, &file_arg) == FAILURE) {
|
2000-03-13 03:44:23 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
link_id = IBG(default_link);
|
|
|
|
break;
|
|
|
|
case 2:
|
2000-04-18 10:52:45 +08:00
|
|
|
if (zend_get_parameters_ex(2, &link_arg, &file_arg) == FAILURE) {
|
2000-03-13 03:44:23 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
2000-04-18 10:52:45 +08:00
|
|
|
convert_to_long_ex(link_arg);
|
|
|
|
link_id = (*link_arg)->value.lval;
|
2000-03-13 03:44:23 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
WRONG_PARAM_COUNT;
|
|
|
|
break;
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
GET_LINK_TRANS(link_id, ib_link, trans_n);
|
|
|
|
|
|
|
|
/* open default transaction */
|
|
|
|
if(_php_ibase_def_trans(ib_link, trans_n) == FAILURE){
|
1999-04-22 10:48:28 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
2000-03-13 03:44:23 +08:00
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
ZEND_FETCH_RESOURCE(fp, FILE *, file_arg, -1, "File-Handle", php_file_le_fopen());
|
2000-03-13 03:44:23 +08:00
|
|
|
|
|
|
|
ib_blob.link = ib_link->link;
|
|
|
|
ib_blob.trans_handle = ib_link->trans[trans_n];
|
|
|
|
ib_blob.bl_handle = NULL;
|
|
|
|
ib_blob.bl_qd.gds_quad_high = 0;
|
|
|
|
ib_blob.bl_qd.gds_quad_low = 0;
|
1999-04-22 10:48:28 +08:00
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
if (isc_create_blob(IB_STATUS, &ib_blob.link, &ib_blob.trans_handle, &ib_blob.bl_handle,&ib_blob.bl_qd)) {
|
2000-03-13 03:44:23 +08:00
|
|
|
_php_ibase_error();
|
1999-04-22 10:48:28 +08:00
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
size = 0;
|
|
|
|
while (issock?(b=SOCK_FREAD(bl_data,sizeof(bl_data),socketd)):(b = fread(bl_data, 1, sizeof(bl_data), fp)) > 0) {
|
|
|
|
if (isc_put_segment(IB_STATUS, &ib_blob.bl_handle, b, bl_data)) {
|
|
|
|
_php_ibase_error();
|
|
|
|
RETURN_FALSE;
|
|
|
|
}
|
|
|
|
size += b;
|
|
|
|
}
|
|
|
|
|
2000-04-18 10:52:45 +08:00
|
|
|
if (isc_close_blob(IB_STATUS, &ib_blob.bl_handle)) {
|
2000-03-13 03:44:23 +08:00
|
|
|
_php_ibase_error();
|
|
|
|
RETURN_FALSE;
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
|
|
|
|
2000-03-13 03:44:23 +08:00
|
|
|
zend_list_delete(file_id);
|
|
|
|
|
|
|
|
ib_blob.bl_handle = NULL;
|
|
|
|
RETVAL_STRINGL((char *)&ib_blob, sizeof(ibase_blob_handle), 1);
|
1999-04-22 10:48:28 +08:00
|
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* End:
|
|
|
|
*/
|
2000-03-13 03:44:23 +08:00
|
|
|
|