elitecodex
Programmer
It shouldnt be... Here is my query:
The error is "Exception Details: System.Data.SqlClient.SqlException: Invalid object name 'dbo.Notes'."
I have tried Notes, dbo.Notes, dbo.[Notes] and they all return a similar error. Im at a loss... I know the table exists as I am looking right after and I have even looked at other SQL statements that actually work that reference the table. For instance...
Any help is greatly appreciated. Thanks.
Code:
INSERT INTO dbo.Notes ('CritPt_ID','Notes_Desc','Who_ID') VALUES (14,'test the testing testers',4)
The error is "Exception Details: System.Data.SqlClient.SqlException: Invalid object name 'dbo.Notes'."
I have tried Notes, dbo.Notes, dbo.[Notes] and they all return a similar error. Im at a loss... I know the table exists as I am looking right after and I have even looked at other SQL statements that actually work that reference the table. For instance...
Code:
SELECT dbo.Notes.Notes_Desc, dbo.Notes.Date, dbo.[User].Username
FROM dbo.[User] INNER JOIN
dbo.Notes ON dbo.[User].User_ID = dbo.Notes.Who_ID
WHERE (dbo.Notes.CritPt_ID = 35)
Any help is greatly appreciated. Thanks.