I am trying to insert a row in an Access Table
Here is the code I am using:
Set Con1 = Server.CreateObject( "ADODB.Connection" )
Con1.Open "accessDSN"
' Add Report
IF addreport <> "" THEN
sqlString = "insert into tReport values ('patil','2','10 OCT 2003','Subject','Report')"
But everytime I get following error mssg.
Error Type:
Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
[Microsoft][ODBC Microsoft Access Driver] Operation must use an updateable query.
Can anybody help me