diff options
author | Stanley Sufficool <ssufficool@php.net> | 2010-05-31 18:38:22 +0000 |
---|---|---|
committer | Stanley Sufficool <ssufficool@php.net> | 2010-05-31 18:38:22 +0000 |
commit | 3a069e814fe01b36812b5c768dd52ccdea3ed098 (patch) | |
tree | 3bc4da5c2aa48a3215bbeca4457b4b92c1a39a4f /ext/pdo_dblib/php_pdo_dblib_int.h | |
parent | 3fe085d10b71fe230c27fbe6ecc899d324232c1c (diff) | |
download | php-git-3a069e814fe01b36812b5c768dd52ccdea3ed098.tar.gz |
Fix bug #50755 & Enable multiple rowsets [DOC]
Diffstat (limited to 'ext/pdo_dblib/php_pdo_dblib_int.h')
-rw-r--r-- | ext/pdo_dblib/php_pdo_dblib_int.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/ext/pdo_dblib/php_pdo_dblib_int.h b/ext/pdo_dblib/php_pdo_dblib_int.h index fbecbd1b84..cb52e47bd7 100644 --- a/ext/pdo_dblib/php_pdo_dblib_int.h +++ b/ext/pdo_dblib/php_pdo_dblib_int.h @@ -114,28 +114,7 @@ typedef struct { } pdo_dblib_db_handle; typedef struct { - int coltype; - char *name; - int maxlen; - char *source; -} pdo_dblib_col; - -typedef struct { - unsigned long len; - char *data; -} pdo_dblib_colval; - -typedef struct { pdo_dblib_db_handle *H; - - int ncols; - pdo_dblib_col *cols; - - pdo_dblib_colval *rows; - int nrows; - - int current; - pdo_dblib_err err; } pdo_dblib_stmt; |