summaryrefslogtreecommitdiff
path: root/ext/dbx/dbx_odbc.h
diff options
context:
space:
mode:
authorMarc Boeren <mboeren@php.net>2001-03-23 14:50:17 +0000
committerMarc Boeren <mboeren@php.net>2001-03-23 14:50:17 +0000
commit1a842c4ae667ba185f0166d58068678121ed6bdb (patch)
tree573d1f3533b371a061c8970987e3aab098acca6c /ext/dbx/dbx_odbc.h
parent2b2484dd3d7afad942308ebc6f1cfecc80dee045 (diff)
downloadphp-git-1a842c4ae667ba185f0166d58068678121ed6bdb.tar.gz
Fixed compile errors for PostgreSQL support (Mc)
Removed globals that Rui put in, and changed the dbx_get_row to include a row_number (which PostgreSQL expects) (Mc) Added source files to Makefile.in and dbx.dsp (Mc) #Could someone please check if the PostgreSQL support works? #And please, check your work _before_ you commit anything!
Diffstat (limited to 'ext/dbx/dbx_odbc.h')
-rw-r--r--ext/dbx/dbx_odbc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dbx/dbx_odbc.h b/ext/dbx/dbx_odbc.h
index c08832776f..ffa20f4b8b 100644
--- a/ext/dbx/dbx_odbc.h
+++ b/ext/dbx/dbx_odbc.h
@@ -43,7 +43,7 @@ int dbx_odbc_getcolumnname(zval ** rv, zval ** result_handle, long column_index,
/*/ returns column-name as string on success or 0 as long on failure /*/
int dbx_odbc_getcolumntype(zval ** rv, zval ** result_handle, long column_index, INTERNAL_FUNCTION_PARAMETERS);
/*/ returns column-type as string on success or 0 as long on failure /*/
-int dbx_odbc_getrow(zval ** rv, zval ** result_handle, INTERNAL_FUNCTION_PARAMETERS);
+int dbx_odbc_getrow(zval ** rv, zval ** result_handle, long row_number, INTERNAL_FUNCTION_PARAMETERS);
/*/ returns array[0..columncount-1] as strings on success or 0 as long on failure /*/
int dbx_odbc_error(zval ** rv, zval ** dbx_handle, INTERNAL_FUNCTION_PARAMETERS);
/*/ returns string /*/