C # create a new SQLite database (two methods)

Source: Internet
Author: User

In this article, you can search and view the Help File of sqlite.net over the Internet, and find two ways to create a new SQLite database. If you have other better solutions, please let me know.
1. Use System. Io to create a new file.

Public void creatnewsqlite (string sqlitename)
{
Filestream Fi = file. Create (sqlitename );
Fi. Close ();
}

2. Use sqlite.net's own sqliteconnection to call the method. Public void creatnewsqlite (string sqlitename)
{
Sqliteconnection. createfile (sqlitename );
}

Of course, this is not a technical article, but it took me two days to understand something. Record it again.
Note: Google's search engine is suitable for us. If I use Baidu, I cannot find the relevant information or use Google's keyword reminder to find a similar method. Haha

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.