好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

随机得到Access数据库记录

由于access数据库记录集缓存的原因,从代码里得到Access数据库随机记录是得不到,需要用随机SQL语句的办法来消除缓存。 下面就是例子: 查看例子http://dotnet.aspx.cc/Exam/GetRandom.aspx %@ Page Language="C#" Debug="true" % %@ import Namespace="Syst

由于access数据库记录集缓存的原因,从代码里得到Access数据库随机记录是得不到,需要用随机SQL语句的办法来消除缓存。

下面就是例子:

查看例子http://dotnet.aspx.cc/Exam/GetRandom.aspx

随机得到Access数据库记录 void Page_Load(Object src,EventArgs e) { if(!IsPostBack) { string MyConnString = "PRovider=Microsoft.Jet.OleDB.4.0;Data Source="     + Server.MapPath("aspxWeb.mdb.ascx"); Random R = new Random(); int intRandomNumber = R.Next(1,1000);

string sql = "select top 10 id As 序号,Title As 标题 from Document Order By Rnd("    + (-1 * intRandomNumber).ToString() + "*id)"; OleDbConnection MyConnection = new OleDbConnection(MyConnString); MyConnection.Open(); OleDbCommand cmd = new OleDbCommand(sql,MyConnection); OleDbDataReader dr = cmd.ExecuteReader(); DataGrid1.DataSource = dr; DataGrid1.DataBind(); cmd.Dispose(); MyConnection.Close(); MyConnection.Dispose(); MyConnection = null; } }

查看更多关于随机得到Access数据库记录的详细内容...

  阅读:38次