public string ss = "Data Source=D\\SQLEXPRESS;Initial Catalog=gym;Integrated Security=True";
private void comboBox2_SelectedIndexChanged(object sender, EventArgs e)
{
string q2 = "insert into database.gym (name,weight,height,add_class,gender,fees) values('" + this.textBox1.Text + "','" + this.textBox2.Text + "','" + this.textBox3.Text + "','" + this.comboBox1.Text + "','" + this.comboBox2.Text + "','" + this.comboBox3.Text + " ') ;";
SqlConnection con = new SqlConnection(ss);
SqlCommand cmd = new SqlCommand(q2, con);
SqlDataReader read;
try
{
con.Open();
read = cmd.ExecuteReader();
MessageBox.Show("Welcome to our gym");
while (read.Read()) { };
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
Q
關鍵字錯誤
-1
A
回答
0
insert into database.gym
取而代之的是使用一個有效的表名
insert into Table
正確的語法爲[Database].[Schema].[TableName]
+0
出現錯誤(「無效的對象名稱gym.schema.customer」)..我該怎麼辦? @saurabh –
+0
你不應該使用word schema,請嘗試gym.dbo.customer。用dbo替換架構 – Saurabh
+0
我也嘗試了gym.dbo.customer,但另一個錯誤出現「無效對象名稱gym.dbo.customer」 –
相關問題
- 1. 關鍵字映射錯誤
- 2. static關鍵字錯誤
- 3. Typescript - 「this」關鍵字錯誤
- 4. python字典關鍵錯誤?
- 5. Python字典關鍵錯誤
- 6. Android中的按鍵關鍵字錯誤
- 7. 關鍵錯誤
- 8. 關鍵錯誤
- 9. [SQLAlchemy的]語法錯誤:後非關鍵字ARG關鍵字ARG
- 10. 語法錯誤 - 關鍵字arg後的非關鍵字arg
- 11. 語法錯誤:關鍵字arg後的非關鍵字arg
- 12. 語法錯誤:關鍵字ARG後非關鍵字ARG
- 13. 語法錯誤:關鍵字參數後非關鍵字參數
- 14. Python關鍵錯誤
- 15. CFBundleVersion關鍵錯誤
- 16. 關鍵錯誤&Pandas
- 17. Scrapy關鍵錯誤
- 18. 「this」關鍵字導致分段錯誤
- 19. SQL錯誤:缺少關鍵字?
- 20. C#MySQL錯誤:不支持關鍵字
- 21. SQLAlchemy的語法錯誤:關鍵字ARG
- 22. 異步等待關鍵字錯誤
- 23. ORA-00905:缺少關鍵字的錯誤
- 24. .NET語言中的錯誤關鍵字
- 25. ORACLE PL/SQL關鍵字缺少錯誤
- 26. 語法錯誤,意外的關鍵字
- 27. 面料關鍵字參數錯誤
- 28. CROSS APPLY給缺少關鍵字錯誤
- 29. python字典關鍵錯誤excel
- 30. 語法錯誤:非關鍵字xlwings
什麼是在那些查詢數據庫? – Ariwibawa
'數據庫'是'Sql Server'中的一個* reserved *關鍵字。你真的有名爲'Database'的模式嗎? –
從連接字符串中,數據庫名稱是健身房。對於插入查詢,正確的語法是** databasename.schema.tablename **。您的命令需要'INSERT INTO gym.schema.table' – Raj