$BD = odbc_connect ('ForumFr', '', '');
$SQL = "Insert Into Cartes (NoCarte, Nom_Utilisateur) values (4, 'Domlane')";
$cur = odbc_exec($BD, $SQL);
odbc_close( $BD);
is there something wrong??
I'm always getting the "SQL state S1000 in SQLExecDirect" error when executing...
what can I do??
$SQL = "Insert Into Cartes (NoCarte, Nom_Utilisateur) values (4, 'Domlane')";
$cur = odbc_exec($BD, $SQL);
odbc_close( $BD);
is there something wrong??
I'm always getting the "SQL state S1000 in SQLExecDirect" error when executing...
what can I do??