我想在我的项目文件夹中创建一个空的本地数据库,但出现错误:
System.Data.SqlServerCe.dll 中出现“System.Data.SqlServerCe.SqlCeException”类型的未处理异常
在线上
conn.Open();
我迷失了我需要做的事情。知道是什么原因造成的吗?我尝试了一些解决方案 - 其中一个......
SqlCeConnection conn = null;
try
{
conn = new SqlCeConnection("Data Source = bd-avalia.sdf; Password ='<asdasd>'");
conn.Open();
SqlCeCommand cmd = conn.CreateCommand();
cmd.CommandText = "create table cliente(id_cliente int identity not null primary key, nome varchar not null, password not null int)";
cmd.ExecuteNonQuery();
}
finally
{
conn.Close();
}
错误: