1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 18:23:26 +02:00
This commit is contained in:
Ard Biesheuvel
2004-02-15 18:45:56 +00:00
parent bc11725188
commit 405101d10d
+5 -2
View File
@@ -5,14 +5,14 @@ InterBase: misc sql types (may take a while)
--POST--
--GET--
--FILE--
<?php
<?php /* $Id$ */
require("interbase.inc");
ibase_connect($test_base);
ibase_query(
"create table test3 (
iter integer,
iter integer not null,
v_char char(1000),
v_date timestamp,
v_decimal4_2 decimal(4,2),
@@ -29,6 +29,9 @@ InterBase: misc sql types (may take a while)
)");
ibase_commit();
/* should fail, but gracefully */
@ibase_query("insert into test3 (iter) values (?)", null);
/* if timefmt is not supported, suppress error here */
@ibase_timefmt("%m/%d/%Y %H:%M:%S");