diff options
| author | Mark Newnham <mark@newnhams.com> | 2026-01-18 20:46:05 -0700 |
|---|---|---|
| committer | Mark Newnham <mark@newnhams.com> | 2026-01-18 20:46:05 -0700 |
| commit | 17fb0481c2848cbbb11feee21a628740564fecdf (patch) | |
| tree | ac12316bf6c6729b65ef4caf3bc18a6d56f46aa8 | |
| parent | 88e1b67d4009c3408a83479364d37a4288a75d07 (diff) | |
| download | adodb-17fb0481c2848cbbb11feee21a628740564fecdf.tar.gz adodb-17fb0481c2848cbbb11feee21a628740564fecdf.tar.bz2 adodb-17fb0481c2848cbbb11feee21a628740564fecdf.zip | |
Undefined class property error in ADOrecordset_empty
| -rw-r--r-- | adodb.inc.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/adodb.inc.php b/adodb.inc.php index ad6e5a98..1eb1f7f0 100644 --- a/adodb.inc.php +++ b/adodb.inc.php @@ -3965,6 +3965,13 @@ http://www.stanford.edu/dept/itss/docs/oracle/10g/server.101/b10759/statements_1 var $fields = false; var $connection = false; + /** + * The timestamp that the recordset was created + * + * @var integer + */ + public int $timeCreated = 0; + function RowCount() { return 0; } |
