我在運行時創建了一個MS Access數據庫,並試圖創建一個表。 下面的代碼在運行時創建表時顯示錯誤「CREATE TABLE語句中的語法錯誤」。CREATE TABLE語句中的語法錯誤
cmmd.CommandText = "CREATE TABLE tblContacts([SectionID] AUTOINCREMENT PRIMARY KEY,[ScetionName] Text(50), [CatID] Number(Integer), [Rate] Number(Double), [Prefix] Text(5), [Suffix] Text(5), [NextNumber] Number(Integer), [Inactive] Yes, [ModUserID] Number(Integer),[ModDate] Date)";
cmmd.ExecuteNonQuery();
[通過學習基礎知識( http://msdn.microsoft.com/en-us/library/ms971485.aspx) – Sadique
看看這個問題:http://stackoverflow.com/questions/1388971/how-i-create-access-database- at-runtime-in-c – BudBrot