-2
public Availableopt(ref SqlConnection nsc, String ac, String nonac, String sit1, String sleep1, String fromopt, String toopt)
{
InitializeComponent();
// String s = "select * from Available where From = @fromopt ";
SqlCommand ncd = new SqlCommand("select * from Available", nsc);
SqlDataAdapter sdan1 = new SqlDataAdapter();
sdan1.SelectCommand = ncd;
DataTable db = new DataTable();
sdan1.Fill(db);
BindingSource bs = new BindingSource();
bs.DataSource = db;
grid.DataSource = bs;
sdan1.Update(db);
}
在上面的代碼中,where
子句在select查詢中不起作用。Microsoft Visual Studio中C#中的SQL查詢
select * from Available where from = 'ahmedabad';
有上線
sqldataadapter.fill(datatable)
除了where
子句的SQL查詢工作完全正常的一個SqlException
。
請始終包括你的錯誤/異常消息,而不是*「有一些sqlexception」*。在這種情況下,我的代碼不會總是如此明顯。 – Filburt
好吧!下次我會留意這個。反正,謝謝 –