ID: 40452
Updated by: [EMAIL PROTECTED]
Reported By: aspen dot olmsted at alliance dot biz
-Status: Open
+Status: Feedback
Bug Type: PDO related
Operating System: Windows 2003, XP
PHP Version: 5.2.1
New Comment:
Are you sure "2007-02-12 14:5" is correct timestamp for MSSQL?
Doesn't it lack the last symbol?
Previous Comments:
------------------------------------------------------------------------
[2007-02-12 22:07:47] aspen dot olmsted at alliance dot biz
Here is the error:
Fatal error: Uncaught exception 'PDOException' with message
'SQLSTATE[HY010]: Function sequence error: 0 [Microsoft][ODBC Driver
Manager] Function sequence error (SQLExecute[0] at
ext\pdo_odbc\odbc_stmt.c:133)' in C:\Program
Files\nusphere\phped\Projects\ASCPlatform\noname1.php:11 Stack trace:
#0 C:\Program
Files\nusphere\phped\Projects\ASCPlatform\noname1.php(11):
PDOStatement->execute(Array) #1 {main} thrown in C:\Program
Files\nusphere\phped\Projects\ASCPlatform\noname1.php on line 11
The only thing missing from the script is:
$dbh = new PDO('odbc:peo', '11', '11');
------------------------------------------------------------------------
[2007-02-12 21:54:51] [EMAIL PROTECTED]
But you forgot the error itself.
And I would appreciate if you include a working script, too.
------------------------------------------------------------------------
[2007-02-12 21:43:30] aspen dot olmsted at alliance dot biz
I included a small script in the reproduce code?
------------------------------------------------------------------------
[2007-02-12 21:27:50] [EMAIL PROTECTED]
Thank you for this bug report. To properly diagnose the problem, we
need a short but complete example script to be able to reproduce
this bug ourselves.
A proper reproducing script starts with <?php and ends with ?>,
is max. 10-20 lines long and does not require any external
resources such as databases, etc. If the script requires a
database to demonstrate the issue, please make sure it creates
all necessary tables, stored procedures etc.
Please avoid embedding huge scripts into the report.
------------------------------------------------------------------------
[2007-02-12 21:14:34] aspen dot olmsted at alliance dot biz
Description:
------------
If you have MS SQL datetime field using odbc and try to use
parameterized inserts you get a sql sequence error.
Reproduce code:
---------------
Here is sql to create table
CREATE TABLE [ASC_EventPreSale] (
[apsEventCode] [int] NOT NULL CONSTRAINT
[DF_ASC_EventPreSale_apsEventCode] DEFAULT (0),
[apsStartDate] [datetime] NOT NULL CONSTRAINT
[DF_ASC_EventPreSale_apsStartDate] DEFAULT (getdate()),
[apsFinishDate] [datetime] NOT NULL CONSTRAINT
[DF_ASC_EventPreSale_apsFinishDate] DEFAULT (getdate()),
[apsGeneralPublicDate] [datetime] NOT NULL CONSTRAINT
[DF_ASC_EventPreSale_apsGeneralPublicDate] DEFAULT (getdate()),
CONSTRAINT [PK_ASC_EventPreSale] PRIMARY KEY CLUSTERED
(
[apsEventCode]
) ON [PRIMARY]
) ON [PRIMARY]
GO
Here is php
<?php
$sql ="INSERT INTO ASC_EventPreSale
(apsEventCode,apsStartDate,apsFinishDate,apsGeneralPublicDate) VALUES
(:apsEventCode,:apsStartDate,:apsFinishDate,:apsGeneralPublicDate)";
$avalues['apsEventCode'] = 6339;
$avalues['apsStartDate'] = '2007-02-12 14:5';
$avalues['apsFinishDate'] = '2007-02-12 16:5';
$avalues['apsGeneralPublicDate'] = '2007-02-15 14:5';
$stmt=$dbh->prepare($sql);
$stmt->execute($avalues);
?>
Expected result:
----------------
If you change the field types to varchar it works fine. It should
function the same with date time fields
Actual result:
--------------
SQL Error
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=40452&edit=1