diff options
author | Nick Gorham <lurcher@php.net> | 1999-11-30 12:41:36 +0000 |
---|---|---|
committer | Nick Gorham <lurcher@php.net> | 1999-11-30 12:41:36 +0000 |
commit | 2df67b7c9e6c31246709058fb26ef760cb827a54 (patch) | |
tree | b4d62436d1db7bfdf42aa31d9cf2857d95b15806 /ext/odbc/php_odbc.h | |
parent | bc38c052e9b5821e6119a2ea57b6313111af7572 (diff) | |
download | php-git-2df67b7c9e6c31246709058fb26ef760cb827a54.tar.gz |
Added check in the ODBC module that a connection is still valid before
reuse in a persistent connection.
Diffstat (limited to 'ext/odbc/php_odbc.h')
-rw-r--r-- | ext/odbc/php_odbc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/odbc/php_odbc.h b/ext/odbc/php_odbc.h index 34ff80a0f9..a91a0766d4 100644 --- a/ext/odbc/php_odbc.h +++ b/ext/odbc/php_odbc.h @@ -241,6 +241,7 @@ typedef struct { char *defUser; char *defPW; long allow_persistent; + long check_persistent; long max_persistent; long max_links; long num_persistent; |