Home > Database > Mysql Tutorial > body text

一次数据访问层的改进之路

WBOY
Release: 2016-06-07 15:11:41
Original
983 people have browsed it

随着平民网络时 代的到来,微型 数据 库必然发挥它独到的作用,Access就是一个不错的选择! 今个,我也用了下Access 数据 库,麻雀虽小,名堂多啊! 查询,永远是神一样的问题,不停的探索,无止境的接近极限,很明显,如何用最少的代码写出最好的查询? 对,问题是: 如何

  随着平民网络时 代的到来,微型数据库必然发挥它独到的作用,Access就是一个不错的选择!

  今个,我也用了下Access数据库,麻雀虽小,名堂多啊!

  查询,永远是神一样的问题,不停的探索,无止境的接近极限,很明显,如何用最少的代码写出最好的查询?

  对,问题是:

  如何用最少的代码写出最好的查询?

  我的"最好"的定义是:代码最美,效率最合适(能快就快,不能快够用就行),开发速度最快.

  这里,以用户登录为例子,先生成相应的实体类(UserLoginInfo.cs):

  UserLoginInfo.cs

  下面我们一起来玩数据查询的升级游戏:

  具体问题:查询出userPass为“123456”这种下三滥的密码的用户

  1.最原始查询

  GetList(string userPass)

  //中间掉了一句话

  foreach(OleDbParameter para in paras){

  cmd.Parameters.Add(para);

  }

  总结:在这个阶段,最恶心的就是

  1.一大堆Connection,Command的操作

  2.读取reader赋值给list的UserLoginInfo的过程,每个字段,索引的对起来,心烦!

  2.对Connection,Command的封装。

  就是SqlHelper那样的,自己随便搞了个。

  ACECommonHelper

  大概的思想,就是这样,调用代码,我想大家也能想象的到,代码参考下一个步骤,可重用性大了。

  3.改进reader填充到list,自动读取。

  根据反射,读取数据库中的字段,自动给UserLoginInfo相应的字段赋值。

  说明:由于是代码生成,数据库的字段基本上和生成类的属性一致。

  从网上下了个类:

  ACEReaderToMode.cs

  改进后的查询方法:

  GetList(string userPass)

  public List GetList(string userPass)

  {

  List list = null;

  List paras = new List();

  OleDbParameter para = new OleDbParameter("@userPass", OleDbType.LongVarWChar);

  para.Value = userPass;

  paras.Add(para);

  using (OleDbConnection connection = new OleDbConnection(connectionString))

  {

  OleDbDataReader reader = AccessHelper.ACECommonHelper.ExcuteReader(

  "select * from User_login where ",

  conn,

  paras.ToArray());

  list = AccessHelper.ACEReaderToModel.ReaderToList(reader);

  reader.Close();

  conn.Close();

  }

  return list;

  }

[1] [2] 下一页

【责编:coco】

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!