sqlite给主键id设置AUTOINCREMENT自增在插入数据的时候报错table has x columns but x-1 values were supplied 为什么自增列要显示不提供,sqlite需要提供自增列table ResTools has 7 columns but 6 values were supplied
SQL Statement:insert into ResTools values('管理系统winform+Sqlite','项目\\C#程序设计\\C#winform项目\\管理系统','','Winform','0','0')
在管理工具中使用
insert into ResTools values(null,'管理系统winform+Sqlite','项目\\C#程序设计\\C#winform项目\\管理系统','','Winform','0','0')
如果在C#调用的话使用
string insertsql = string.Format("insert into diary values({0},'{1}','{2}','{3}')", "null", date, weather, text);
var inserttable = sqlhelper.ExecuteNonQuery(insertsql);
if (inserttable > 0)
{
var table = sqlhelper.GetDataTable(recentlysql);//查询
ViewBag.TableData = table;
}
else {
}文章来源:https://www.toymoban.com/news/detail-799557.html
{0}不要加''文章来源地址https://www.toymoban.com/news/detail-799557.html
到了这里,关于sqlite插入语句id自增列问题的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!