aboutsummaryrefslogtreecommitdiffstats
path: root/MainDb.php
diff options
context:
space:
mode:
Diffstat (limited to 'MainDb.php')
-rw-r--r--MainDb.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/MainDb.php b/MainDb.php
index dba4e18..adbc00d 100644
--- a/MainDb.php
+++ b/MainDb.php
@@ -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();