From eef3a81be779db2489acfc60bb3b5d34d423cd96 Mon Sep 17 00:00:00 2001 From: Clemens Schwaighofer Date: Tue, 20 Mar 2018 14:10:06 +0900 Subject: [PATCH] Minor update for DB psql class include --- www/libs/db_pgsql.inc | 2 -- 1 file changed, 2 deletions(-) diff --git a/www/libs/db_pgsql.inc b/www/libs/db_pgsql.inc index 96468d93..1781c9b2 100644 --- a/www/libs/db_pgsql.inc +++ b/www/libs/db_pgsql.inc @@ -41,7 +41,6 @@ class db_pgsql { private $last_error_query; private $dbh; -// public $currval_query; // METHOD: __construct // PARAMS: none @@ -227,7 +226,6 @@ class db_pgsql } $seq = (($schema) ? $schema.'.' : '').$table."_".$pk_name."_seq"; $q = "SELECT CURRVAL('$seq') AS insert_id"; - // $this->currval_query = $q; // I have to do manually or I overwrite the original insert internal vars ... if ($q = $this->_db_query($q)) { list($id) = $this->_db_fetch_array($q);