C# SQLite 错误,求教原因,解决办法
C#SQLite想在建立表之前确认表是否存在网上找的代码SQLiteCommandmDbCmd=m_dbConnection.CreateCommand();mDbCmd...
C# SQLite想在建立表之前确认表是否存在
网上找的代码
SQLiteCommand mDbCmd = m_dbConnection.CreateCommand();
mDbCmd.CommandText = "select count(*) from sqlite_master where type='table' and name='Studentinfo';";
if (0 == Convert.ToInt32(mDbCmd.ExecuteScalar()))
{
//table does not exist.
}
else
{
//table does exist.
}
结果报错
SQL logic error or missing database near "select count": syntax error"} System.Exception {System.Data.SQLite.SQLiteException}
求教是什么原因。用可视化工具看了数据库正常,仔细看了指令没有混入中文字符之类的。
其他查询,插入等操作都正常。 展开
网上找的代码
SQLiteCommand mDbCmd = m_dbConnection.CreateCommand();
mDbCmd.CommandText = "select count(*) from sqlite_master where type='table' and name='Studentinfo';";
if (0 == Convert.ToInt32(mDbCmd.ExecuteScalar()))
{
//table does not exist.
}
else
{
//table does exist.
}
结果报错
SQL logic error or missing database near "select count": syntax error"} System.Exception {System.Data.SQLite.SQLiteException}
求教是什么原因。用可视化工具看了数据库正常,仔细看了指令没有混入中文字符之类的。
其他查询,插入等操作都正常。 展开
若以下回答无法解决问题,邀请你更新回答
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询