Syntax Error INSERT INTO Statement - ADO.Net Solved
Syntax Error INSERT INTO Statement – ADO.Net Solved
This is a common error occurred during the database operation in ADO.Net. The cause for this error is the column name matches some reserved words. To solve this issue suffix and prefix with “] and [” in column names. Command object If you are using command object use the following method in the insert statement. OleDbCommand cmd = new OleDbCommand(“insert into acgroup(gname,parent,[note])…
View On WordPress

















