From: [EMAIL PROTECTED]
Operating system: Windows NT 4 SP 5
PHP version: 4.0.2
PHP Bug Type: ODBC related
Bug description: odbc_execute , SQL state 07001 in SQLExecute
I tried to use this function with Microsoft Access Driver
$values = array( $ApplicantId ,$AnsQuestionId[$i],$Answer[$i]);
$query = "INSERT INTO Responses ([PersonId], [QuestionId], [Response], [Date]) ";
$query .= "VALUES(?,?,?," . strftime("#%Y-%m-%d#") .") ";
$result = odbc_prepare($connection, $query);
odbc_execute($result, $values );
and got error
Warning: SQL error: [Microsoft][ODBC Microsoft Access Driver]COUNT field incorrect ,
SQL state 07001 in SQLExecute in D:/Xitami/webpages/moveit/index.php on line 46
I've checked without parameter. The statement worked fine.
--
Edit Bug report at: http://bugs.php.net/?id=9284&edit=1
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]