打印本文 打印本文 关闭窗口 关闭窗口
JScript.Net 之 SqlDataReader读取数据
作者:武汉SEO闵涛  文章来源:敏韬网  点击数1238  更新时间:2007/11/14 12:59:54  文章录入:mintao  责任编辑:mintao
<%@import namespace="System.Data.SqlClient"%>

var db : String = "server=10.1.0.1;uid=sa;pwd=123;database=db";
var sql : String = " select * from table ";

var rs = SqlDataReader;
var conn : SqlConnection = new SqlConnection(db);
var cmd : SqlCommand = new SqlCommand(sql,conn);
            
try{

    conn.Open();
    rs = cmd.ExecuteReader();
    
    if (rs.HasRows){
        //Founded.
    }else{
        //Not Found.

        while(rs.Read()){
            Response.Write(rs["id"] .ToString());
        }
    }
            
    rs.Close();
    conn.Close();
    
}catch(e){
    Response.Write("ERROR!");
}finally{
    cmd.Dispose();
    conn.Dispose();
}
%>

打印本文 打印本文 关闭窗口 关闭窗口