gpt4 book ai didi

SQL Server 2008 错误

转载 作者:行者123 更新时间:2023-12-04 06:11:48 26 4
gpt4 key购买 nike

我有这个代码

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 并输入插入语句时,它起作用了。

最佳答案

您的连接字符串要么指向一个与您手动引用的数据库不同的数据库,一个没有该表的数据库,和/或您在 sql 语句中的名称错误。

编辑 - 嗯,其他答案关于缺少架构/初始目录的说法很可能是您的问题。

关于SQL Server 2008 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7690499/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com