string query = "Create table " + name +
" (Manpower_Name NVARCHAR(50), Instance INT, Start NVARCHAR(30), End NVARCHAR(30));";
我在C#中爲SQL Server CE數據庫(.sdf
文件)製作此連接字符串。但是出現如下錯誤:SQL Server CE查詢錯誤(unhandles exception)。從c執行#
解析查詢時出錯。 [令牌行號= 1,令牌行偏移= 77,令牌在錯誤=完]
從功能執行時:
public void create_proj_table(string name)
{
string query = "Create table " + name + " (Manpower_Name NVARCHAR(50), Instance INT, Start NVARCHAR(30), End NVARCHAR(30));";
//open connection
if (this.OpenConnection() == true)
{
//create command and assign the query and connection from the constructor
SqlCeCommand cmd = new SqlCeCommand(query, connection);
//Execute command
cmd.ExecuteNonQuery();
//close connection
this.CloseConnection();
}
}
你能告訴我如何你執行這個查詢嗎? – 2013-05-09 15:20:44
嗨,我已添加編輯以顯示它是如何執行的。 – 2013-05-09 15:23:20
謝謝marc_s的編輯。我會更加小心。 – 2013-05-09 15:28:52