mirror of
https://github.com/php/pecl-database-ibm_db2.git
synced 2026-03-23 23:02:16 +01:00
Fix syntax errors in bigint test
The IBM i version of the test was fixed, but not the one for LUW.
This commit is contained in:
@@ -40,7 +40,7 @@ if ($conn) {
|
||||
}
|
||||
|
||||
$drop_proc_sql = 'drop procedure update_bigint_col';
|
||||
$stmt = @db2_exec(conn,drop_proc_sql);
|
||||
$stmt = @db2_exec($conn, $drop_proc_sql);
|
||||
|
||||
//Create procedure with 2 IN parameters of type bigint
|
||||
$create_proc_sql = "CREATE PROCEDURE update_bigint_col (IN param1 bigint, IN param2 bigint)
|
||||
|
||||
Reference in New Issue
Block a user