📅  最后修改于: 2022-03-11 15:05:02.850000             🧑  作者: Mango
try
{
connection.Open();
cmd = connection.CreateCommand();
cmd.CommandText = "INSERT INTO BOOK(ISBN, title, author, publisher,imgPath, catalogID) VALUES ('" + isbn + "','" + title + "','" + author + "','" + publisher + "','" + localPath + "','" + catalogid + "')";
int a= cmd.ExecuteNonQuery();
if(a>0)
//updated.
else
//Not updated.
}
catch (Exception)
{
//Not updated.
}