主题:一条SQL插入语句
请问各位老师:
以下语句在SQL SERVER2000 查询分析器正常运行,在VB中出现错误"对象名Tbl_Sys_User无效",请指点一下,谢谢
With Conn
.Execute "Insert Into Tbl_Sys_User (Usr_ID,Usr_Name,Usr_Type,Usr_Password) Values (2,'gdf','superadminer','aaa')"
End With
后面加上分号也没效
With Conn
.Execute "Insert Into Tbl_Sys_User (Usr_ID,Usr_Name,Usr_Type,Usr_Password) Values (2,'gdf','superadminer','aaa');"
End With
以下语句在SQL SERVER2000 查询分析器正常运行,在VB中出现错误"对象名Tbl_Sys_User无效",请指点一下,谢谢
With Conn
.Execute "Insert Into Tbl_Sys_User (Usr_ID,Usr_Name,Usr_Type,Usr_Password) Values (2,'gdf','superadminer','aaa')"
End With
后面加上分号也没效
With Conn
.Execute "Insert Into Tbl_Sys_User (Usr_ID,Usr_Name,Usr_Type,Usr_Password) Values (2,'gdf','superadminer','aaa');"
End With