SqlConnection
myConn
=
new
SqlConnection();
myConn
ConnectionString="server=数据库地址;database=数据库名;uid=数据库登录名;pwd=数据库登录密码“;
然后打开连接:myConnopen();
再建立Command对象:
SqlCommand
myCmd=new
SqlCommand("select
from
Test,myConn);
然后使用SqlDataReader读取数据:
SqlDataReader
dr=CommExecuteReader();
这么说你可明白了?
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)