I have a table called NAMES in my SQL Server database. I am trying to retrieve the entire table and put it into a dataset:

//get the connection string from web.config
string connString = ConfigurationManager.ConnectionStrings["Platform"].ConnectionString;
DataSet dataset = new DataSet();

using (SqlConnection conn = new SqlConnection(connString))
{
    SqlDataAdapter adapter = new SqlDataAdapter();                
    adapter.SelectCommand = new SqlCommand("NAMES", conn);
    adapter.Fill(dataset);
}  

This throws a sql exception though,

"Invalid Object Name NAMES"...

What am I doing wrong?

link|improve this question

74% accept rate
2  
adapter.SelectCommand = new SqlCommand("select * from [NAMES]", conn); – Amen Ayach Feb 23 at 12:09
feedback

3 Answers

up vote 3 down vote accepted

Open the connection !!!!!!

 //get the connection string from web.config
 string connString = ConfigurationManager .ConnectionStrings["Platform"].ConnectionString;
 DataSet dataset = new DataSet();

 using (SqlConnection conn = new SqlConnection(connString))
 {
     SqlDataAdapter adapter = new SqlDataAdapter();                
     adapter.SelectCommand = new SqlCommand("select * from [NAMES]", conn);
     conn.Open(); 
     adapter.Fill(dataset);
 }  
link|improve this answer
opening the connection would certainly help but I don't think that is the exception you'd see. Invalid object name certainly suggests that it had reached the database. I assume the code above is a cut down version that just accidentally omitted the DB opening. – Chris Feb 23 at 12:16
Can you access the database through SQL management studio to check if this table really exists – Amen Ayach Feb 23 at 12:19
+1, thanks you got my vote – Amen Ayach Feb 23 at 13:28
2  
Actually, using the SqlDataAdapter you don't have to open the connection yourself - the adapter will do this for you! – marc_s Feb 23 at 13:46
when using sqldataadapter you don't open the connection, the adapter opens and close the connection by itself – Ali Issa Feb 24 at 14:08
feedback

You're not passing an actual SQL select command to the SqlCommand constructor.

link|improve this answer
if I change "NAMES" to "SELECT * FROM NAMES" I still get the same error – user559142 Feb 23 at 12:12
1  
Have you tried [NAMES] instead (as per @AmenAyach's suggestion)? Names is an ODBC reserved keyword and is thus goign to cause potential confusion in parsing SQL unless you escape it properly. – Chris Feb 23 at 12:19
feedback

First check whether Select * from dbo.[Names] is wroking in ur sql ?

     string connString = ConfigurationManager .ConnectionStrings["Platform"].ConnectionString;
        Dataset ds=new Dataset();
        SqlConnection con = new Sqlconnection(connString);
        SqlDataAdapter adapter = new SqlDataAdapter("Select * from dbo.[Names]",con);
        adapter.Fill(ds);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.