tags:

views:

38

answers:

1

hello all, i have encounter a error that's what can i do? System.Data.SqlClient.SqlException: Invalid object name 'MESSAGE'.

A: 

Sounds like your SQL referred to table or column with the name MESSAGE, but there is no such thing in your schema.

If you insist that your schema does have a table or column named MESSAGE, perhaps your code isn't pointing to the database that you think it is. Check your connection.

duffymo