Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
class InspectionEquip : DataSet
{
    private readonly SqlConnection CPEC = new SqlConnection(ConfigurationManager.ConnectionStrings["ConnectionString"].ToString());

    public InspectionEquip(string store)
    {
        CPEC.Open();
        SqlCommand comm = new SqlCommand("Select * From Equip3 Where Store = '" + store + "'", CPEC);
        SqlDataAdapter da = new SqlDataAdapter(comm);
        da.Fill(/* What to Put Here? Tried "this" and it just returns blank */);    
        CPEC.Close();
    }
}
share|improve this question
2  
This is vulnerable to SQL Injection - please read this: sommarskog.se/dynamic_sql.html#SQL_injection – Bridge May 30 '12 at 15:04
1  
Thanks for the heads up. But the store argument is not coming from the user. Is there another danger I am overlooking? – jmease May 30 '12 at 15:06
@jmease It doesn't cost anything to use parameterized inputs, and it ends all possibility of SQL injection, so you should probably do it. – Oliver May 30 '12 at 15:06
@jmease Besides best practices, is there any chance that this "store" field could contain a single quote? Your code will exception if it does. – Bridge May 30 '12 at 15:08
No. The store parameter is uniform. Never contains any characters other than D, H, 0 - 9. – jmease May 30 '12 at 15:11
show 1 more comment

1 Answer

up vote 0 down vote accepted

You have a problem with your SQL query (no matching data, bad parameter). da.Fill(this) works fine.

If you want proof - swap this SqlCommand line with yours...

SqlCommand comm = new SqlCommand("select * from INFORMATION_SCHEMA.COLUMNS", CPEC);

You should also probably extend DataTable, not DataSet if you only ever plan on storing a single tables results.

share|improve this answer
1  
Thanks. The SQL statement works fine. I found the problem and it was my own stupidity. Made a mistake in binding the DataSet to my DataGrid. It's working now. – jmease May 30 '12 at 15:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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