Hey Everyone,
I am going through a beginning tutorial on making a sql database with asp -- the article to right click on the dbase and add New Query - then select from the dbase, etc. etc. those all worked fine.
HOWEVER, it then tells me to insert a row -- it all looks standard and should work (here is what it says):
Try running an INSERT query to insert a new row in the quotes table:
INSERT (Author, Quote) INTO Quotes VALUES ('Me', 'Life is good!')
But I get an error that reads:
SQL Execution error
Error Sourse .NetSql Data Provider
Error Message: Incorrect Syntax near '('.
Any help on this one?
Loading

Todd VancePosted Jun 5, 2007, 9:03 AM
INSERT INTO Quotes
(Author, Quote)
VALUES ('todd', 'yo')
----
The sad thing is that this tutorial comes straight off of the MSDN website. Shouldn't someone read this stuff before they put it out there for newbies like me to fall upon?