diff options
author | Wez Furlong <wez@php.net> | 2005-01-20 03:33:17 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2005-01-20 03:33:17 +0000 |
commit | 84aa9020159ad124b0fc658ede5734038d9b6ae5 (patch) | |
tree | da157d3a0965a062715485145a22c88a7ad42fcb /ext/pdo_oci/oci_statement.c | |
parent | 9fe37737f96ba9368aa0de47540a624c56a35ad2 (diff) | |
download | php-git-84aa9020159ad124b0fc658ede5734038d9b6ae5.tar.gz |
Generate pdo_oci.dll for modern SDKs and pdo_oci8.dll for ye-olde oci805 libs.
I'm told that oci805 is required for connectivity to oci805 servers, which are
no longer supported in more recent SDK releases.
Edin: please grab:
http://download.oracle.com/otn/nt/instantclient/instantclient-basic-win32-10.1.0.3-20050113.zip
http://download.oracle.com/otn/nt/instantclient/instantclient-sdk-win32-10.1.0.3-20050113.zip
and extract them under php_build, so that you end up with php_build/instantclient10_1
Diffstat (limited to 'ext/pdo_oci/oci_statement.c')
-rwxr-xr-x | ext/pdo_oci/oci_statement.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_oci/oci_statement.c b/ext/pdo_oci/oci_statement.c index e8550c8e2e..fb7ff5172b 100755 --- a/ext/pdo_oci/oci_statement.c +++ b/ext/pdo_oci/oci_statement.c @@ -186,7 +186,7 @@ static sb4 oci_bind_output_cb(dvoid *ctx, OCIBind *bindp, ub4 iter, ub4 index, d Z_STRLEN_P(param->parameter) = param->max_value_len; Z_STRVAL_P(param->parameter) = emalloc(Z_STRLEN_P(param->parameter)+1); - + P->actual_len = Z_STRLEN_P(param->parameter); *alenpp = &P->actual_len; *bufpp = Z_STRVAL_P(param->parameter); *piecep = OCI_ONE_PIECE; |