У меня есть этот код
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 и набираю оператор вставки, он работает.