I want to update the existence data base data. But when I try it give me executeNonQuery
error
So Kindly check this error and how to solve it??
CodePudding user response:
The problem is in column father-name , the '-' sign between is not acceptable in SQL Syntax for column names, change the column name to father_name in your database, or use brackets in your SQL statement
..., [father-name]='your value', ...