首页 > 编程 > ASP > 正文

asp。net关于三层连接数据库

2024-05-04 11:06:34
字体:
来源:转载
供稿:网友

在中间层访问数据库时,我想使用command方式从数据库读出数据放在datareader中,但是无法成功,请问各位有什么方法。(我不想用adapter方式)我的代码如下
[webmethod]
public system.data.sqlclient.sqldatareader getdata()
{

system.data.sqlclient.sqldatareader reader ;//= new system.data.sqlclient.sqldatareader();
sqlconnection.open();
sqlcommand.commandtext = "select top 1 * from authors";
reader = sqlcommand.executereader();
reader1 = reader["id"].tostring();
return reader;
}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表