The encapsulation of data access classes and the three main classes

Source: Internet
Author: User

Encapsulation of data access classes:

Data access classes fall into three main categories: Connection classes, entity classes, and data access classes.

1. Connection class:

public class Lianjie

{private static string connection= ' server=.; database=mydb;uid=sa;pwd=789234178 ";

public static Sqlconnection Conn

{Get

{

SqlConnection conn=new SqlConnection (connecction);

Return conn; }

}

}

2, Entity class: private string Code; To encapsulate a property

3. Data Access class:

public class table Name da

{

Private SqlConnection Conn; Private Sqlcommand cmd;

Private SqlDataReader Dr;

Public Teseda ()

{

Conn=lianjie.conn; Cmd=conn. CreateCommand ();

}

Public list< table name >selectall () query table all

{

cmd.commandtext= "Select*from table name";

Conn. Open ();

Dr=cmd. ExecuteReader ();

List<test>list=new list<test> ();

while (Dr. Read ())

{

Test data=new test ();

Data. code=dr["Code"]. ToString ();

Data. name=dr["Name"]. ToString ();

Data. pwd=dr["PWD"]. ToString ();

List. ADD (data);

}

Conn. Close (); return list;

}  }

The encapsulation of data access classes and the three main classes

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.