Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

80040e4d errror SQL OLE DB

Status
Not open for further replies.

JoeMost

Technical User
Oct 24, 2000
26
US
Hi,


I recently upsized from Access to MS SQL database. I now get the error
message:

Microsoft OLE DB Provider for SQL Server error '80040e14'

Line 1: Incorrect syntax near '`'.

/_ScriptLibrary/Recordset.ASP, line 636


Any thoughts as to where to look for this problem?

Thanks
Joe
 
That usually indicates an apostrophy embedded in a string that is being inserted/updated to a column. They are not legal in SQL string values in SQL statements, i.e.:

insert into xtable (name,email) values('O'Conner','john@oconner.com')

Good luck
-pete
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top