Re: Help I am getting an error when I run my insert statement
- From: DGA <XXXdalbertsonYYY@xxxxxxxxxxxxxxxxxxxx>
- Date: Wed, 13 Dec 2006 20:22:28 -0500
Tescumeh said (on or about) 12/11/2006 15:16:
Please help I am getting the same error no matter how I change my
quotes.
Microsoft OLE DB Provider for SQL Server error '80040e14'
Incorrect syntax near the keyword 'Plan'.
conn.Execute("INSERT INTO jmiles.Plan([startdate],[finishdate],
[revfinish],[responsible],[action],[title],[dept],[author],[type])
values ('" & request.Form("startdate") &"' ,"&
Request.Form("finishdate") &" ," & Request.Form("revfinish") & ",'" &
Request.Form("responsible") & "','" & Request.Form("action") & "','" &
Request.Form("title") & "','" & Request.Form("dept") & "','" &
session("empid") & "','" & Request.form("type") & "')")
'set Rs =conn.Execute("SELECT * FROM Equipment")
startdate, finshdate,revfinish are all smalldatetime
[Action], responsible, dept, author, type are all text
title is nvarchar
any Ideas?
When I have a problem like that, I find it very helpful to
break the code into parts so I can assign the SQL statement
to a variable, place a breakpoint in the code and inspect
the variable. Then I try copying the SQL and pasting it
into Query Analyzer. It almost always shows me the exact
problem.
.
- Follow-Ups:
- References:
- Help I am getting an error when I run my insert statement
- From: Tescumeh
- Help I am getting an error when I run my insert statement
- Prev by Date: Re: Problem with way to access all recordsets returned by sp_spaceused using ODBC APIs on C++
- Next by Date: Re: Problem with way to access all recordsets returned by sp_spaceused using ODBC APIs on C++
- Previous by thread: Re: Help I am getting an error when I run my insert statement
- Next by thread: Re: Help I am getting an error when I run my insert statement
- Index(es):
Relevant Pages
|