请问谁申请过http://www.vwdhosting.net/的免费空间 ,有问题请教
string path = "data source=sql1.vwdhosting.net,1435;User ID=houtangalley-2;Password=shupingda;database=houtangalley-2 ";
con = new SqlConnection(path);
con.Open();
ds = new DataSet();
da = new SqlDataAdapter( "select * from jszc ", con);
da.Fill(ds, "jszc1 ");
DataGrid7.DataSource = ds.Tables[ "jszc "].DefaultView;
DataGrid7.DataBind();
con.Close();
当我编好上面代码传到网上后,却提示Invalid object name 'jszc '.
明明我在数据库里有jszc这个表,请问是什么问题呢
还有,请问是把sql sever 的数据库文件houtangalley-2放到和文件同一目录就行了吗
还有,请问是不是不能使用access啊
没有了,谢谢,急急啊
------解决方案--------------------DataGrid7.DataSource = ds.Tables[ "jszc "].DefaultView;
改成
DataGrid7.DataSource = ds.Tables[ "jszc1 "].DefaultView;