Thrakorzog Posted September 13, 2006 Share Posted September 13, 2006 I am not exactly a new-b, but I am not so old hat to know what's going on with this one, and can use some sage advice.I have the following code that fails:[color=red]//Create Tasksfor ($n = 0 ; $n < count ($TN) ; $n++) { $sql="INSERT INTO Task (ParentProject, ParentTask, Desc, TimeEstimate, Lvl) "; $sql=$sql."VALUES ("; $sql=$sql."0, "; $sql=$sql.$proj_ID.", "; $sql=$sql."'".$TN[$n]."', "; $sql=$sql.$TT[$n].", "; $sql=$sql.$LV[$n].")"; [color=limegreen]$rs=odbc_exec($conn,$sql);[/color] [i][b] //<-this is line 77[/b][/i] if (!$rs) { exit("Error in SQL:".$sql); }}[/color]===================================\OK, it looks clean, but that usually means you have a database side problem except for two factors:1) I have another statement just a few lines up that calls successfully:[color=red]//Create SQL statement$sql="INSERT INTO Project (ProjName, POC, ScopeState, DesignConcepts, Deliverables, ";$sql=$sql."Boundaries, SuccessCriteria, Resources, RisksMit, Assumptions, ";$sql=$sql."StakeHolders, ProjectManager, ProjectSponsor) ";$sql=$sql."VALUES ('".$PN."', '".$PC."', '".$SC."', '".$DC."', '".$DE;$sql=$sql."', '".$BO."', '".$SU."', '".$RS."', '".$RM."', '".$AS;$sql=$sql."', '".$ST."', ".$PM.", ".$PS.")";//Execute SQL statement$rs=odbc_exec($conn,$sql);if (!$rs) { exit("Error in SQL:".$sql); }//Get ID just inserted Into Database$pre_SQL="SELECT TOP 1 ProjID FROM Project ORDER BY ProjID DESC";//Execute SQL statement$pre_rs=odbc_exec($conn,$pre_SQL);if (!$pre_rs) { exit("Error in SQL".$pre_sql); }while (odbc_fetch_row($pre_rs)) { $proj_ID=odbc_result($pre_rs,"ProjID"); }[/color]==============================================================and .......2) the error indicates a problem with my syntax:[color=blue]Warning: odbc_exec() [function.odbc-exec]: SQL error: [Microsoft][ODBC Microsoft Access Driver] Syntax error in INSERT INTO statement., SQL state 37000 in SQLExecDirect in C:\Webroot\matrix\Olive\Functions\NewProjectCreate.php on line 77Error in SQL:INSERT INTO Task (ParentProject, ParentTask, Desc, TimeEstimate, Lvl) VALUES (0, 0, '1', 1, 0)[/color]Thanks for any insight. Quote Link to comment https://forums.phpfreaks.com/topic/20643-wierd-insert-into-problem-with-odbc/ Share on other sites More sharing options...
Barand Posted September 17, 2006 Share Posted September 17, 2006 DESC is SQL reseved word. I recommend you change the column name, say 'description' Quote Link to comment https://forums.phpfreaks.com/topic/20643-wierd-insert-into-problem-with-odbc/#findComment-93442 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.