0
我這樣做是正確使用下面的代碼創建SQL Server CE數據庫表:SQL Server精簡版 - 創建數據庫表
string connectionString = "DataSource=\"test.sdf\"; Password=\"mypassword\"";
SqlCeEngine en = new SqlCeEngine(connectionString);
en.CreateDatabase();
但是我怎麼創建我的數據庫表和插入數據?我有存儲在應用程序資源位置中的SQL創建語句。
感謝大家的回答! – 2009-12-19 19:35:34