summaryrefslogtreecommitdiff
path: root/adodb.inc.php
diff options
context:
space:
mode:
authorDamien Regad <dregad@mantisbt.org>2023-03-16 23:36:04 +0100
committerDamien Regad <dregad@mantisbt.org>2023-03-17 22:55:29 +0100
commit23a3694f997495104723620527195a7d5d4b2567 (patch)
treec9a1b330ebdd4905773edf83cd9f838cbd4529b8 /adodb.inc.php
parent96236f468ad4db84e2928102556410bec36a3b28 (diff)
downloadadodb-23a3694f997495104723620527195a7d5d4b2567.tar.gz
adodb-23a3694f997495104723620527195a7d5d4b2567.tar.bz2
adodb-23a3694f997495104723620527195a7d5d4b2567.zip
PHPDoc
Diffstat (limited to 'adodb.inc.php')
-rw-r--r--adodb.inc.php18
1 files changed, 15 insertions, 3 deletions
diff --git a/adodb.inc.php b/adodb.inc.php
index ac4a6ecb..b886b149 100644
--- a/adodb.inc.php
+++ b/adodb.inc.php
@@ -628,9 +628,21 @@ if (!defined('_ADODB_LAYER')) {
var $_transOK = null;
/** @var resource Identifier for the native database connection */
var $_connectionID = false;
- var $_errorMsg = false; /// A variable which was used to keep the returned last error message. The value will
- /// then returned by the errorMsg() function
- var $_errorCode = false; /// Last error code, not guaranteed to be used - only by oci8
+
+ /**
+ * Stores the last returned error message.
+ * @see ADOConnection::errorMsg()
+ * @var string|false
+ */
+ var $_errorMsg = false;
+
+ /**
+ * Stores the last returned error code.
+ * Not guaranteed to be used. Only some drivers actually populate it.
+ * @var int|false
+ */
+ var $_errorCode = false;
+
var $_queryID = false; /// This variable keeps the last created result link identifier
var $_isPersistentConnection = false; /// A boolean variable to state whether its a persistent connection or normal connection. */