我有這樣的代碼SQL Server 2008中的錯誤
Dim str As String
Dim myConn As SqlConnection = New SqlConnection("Server=JDBRANDE;Integrated Security=SSPI;Persist Security Info=False")
Dim myCommand As SqlCommand
Try
myConn.Open()
str = "insert into orders_table(tuid,customer_tuid,start_time,finish_time) " + " VALUES ('2342', '455', 'NULL', 'NULL')"
'MsgBox(str)
myCommand = New SqlCommand(str, myConn)
myCommand.ExecuteNonQuery()
我不斷收到無效的對象名稱orders_table
錯誤
當我直接到SQL Server和類型的INSERT語句,它的作品。
謝謝......我忘了在連接字符串中包括數據庫名稱 – user867621
@用戶謝謝,但我認爲其他兩個答案之一是更完整和正確的,然後我的。 – asawyer