diff options
| -rw-r--r-- | adodb.inc.php | 9 | ||||
| -rw-r--r-- | drivers/adodb-mssqlnative.inc.php | 1 |
2 files changed, 9 insertions, 1 deletions
diff --git a/adodb.inc.php b/adodb.inc.php index 4b9b37bb..952aa2ba 100644 --- a/adodb.inc.php +++ b/adodb.inc.php @@ -756,6 +756,15 @@ if (!defined('_ADODB_LAYER')) { /** @var string a specified locale. */ var $locale; + /** + * Setting true forces metacolumns to be read the db for + * each access of a table instead of using cached version. + * Currently only works on mssqlnative + * + * @var bool + */ + public bool $cachedSchemaFlush = false; + /** * Default Constructor. diff --git a/drivers/adodb-mssqlnative.inc.php b/drivers/adodb-mssqlnative.inc.php index accc3c8c..e4859a0d 100644 --- a/drivers/adodb-mssqlnative.inc.php +++ b/drivers/adodb-mssqlnative.inc.php @@ -100,7 +100,6 @@ class ADODB_mssqlnative extends ADOConnection { var $_dropSeqSQL = "DROP SEQUENCE %s"; var $connectionInfo = array('ReturnDatesAsStrings'=>true); - var $cachedSchemaFlush = false; var $sequences = false; var $mssql_version = ''; |
