diff options
author | Filipp Lepalaan <filipp@mac.com> | 2011-09-27 14:47:01 +0300 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2011-09-27 14:47:01 +0300 |
commit | 4c83a63533d8616e01d2ac473f98f4a2dc6bb1be (patch) | |
tree | d5b2e12c214543aba7030605ec01d8e8ece325e7 /MainDb.php | |
parent | e37db3cdbfb1ec57b5126be06325a75ccdc82efe (diff) | |
download | main-master.tar.gz main-master.tar.bz2 main-master.zip |
Diffstat (limited to 'MainDb.php')
-rw-r--r-- | MainDb.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -81,7 +81,7 @@ class MainDb //// // execute an SQL query // @return mixed - public static function query($sql, $data = NULL) + public static function query($sql, $data = NULL, $seq_id = NULL) { $args = func_get_args(); $sql = array_shift($args); @@ -153,7 +153,7 @@ class MainDb } if( empty( $data[':id'] )) { - $data[':id'] = $pdo->lastInsertId('order_id_seq'); + $data[':id'] = $pdo->lastInsertId( $seq_id ); } $out = array(); |