Test SQLite [. NET 2.0 applications]

Source: Internet
Author: User
SQLite is a lightweight embedded file-type database. The following is an application attempt in. NET 2.0.

Tools used:
SQLite expert SQLite database management tool, very easy to use, similar to the EMS SQL Manager 2007 for MySQL I introduced earlier
System. Data. SQLite for ADO. Net driver, similar to MySQL. Data. dll
Both tools include the SQLite engine.

Use SQLite expert to create databases and tables
 

New Field
 

Browse data
 

For SQL queries, the syntax seems to be a little like that of MySQL.
 

In ASP. NET 2.0, create a website and reference system. Data. SQLite. dll. Code Example: Sqliteconnection con =   New Sqliteconnection ( @" Data Source = "   + Server. mappath ( " App_data " ) +   " /Book. db3 " );
Sqlitecommand cmd =   New Sqlitecommand ( " Select * From ezbook order by ID " , Con );
Con. open ();
Sqlitedatareader Dr = Cmd. executereader (commandbehavior. closeconnection );
Gridview1.datasource = Dr;
Gridview1.databind ();
Dr. Close ();


Appendix: Example sqlite_net_demo in this article

Related Article

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.