WINCE问题 求解
创建表
string create_table = "create table barcode_tb (code varchar(20) not null)";
cmd = new SqlCeCommand(create_table, conn);
//.CommandType = CommandType.Text;
cmd.ExecuteNonQuery();
cmd.Dispose();
运行到红色区域时报错,求原因,
错误:
异常代码:0xc0000005
异常地址:0x01162f08
读取:0x0000000c
出错模版:sqlceme35.dll
偏移:0x00002f08
VS2008项目,我添加sqlceme35.dll,添加成功了,但在项目的“引用”下却没有sqlceme35.dll,疑惑,
还有就是许多dll添加失败,我在项目中没有应用的。
[解决办法]
WinCe好像不能直接连接SqlServer!
[解决办法]
不能这么写的