Zhao Yazhi _ using SQLite to create a database

Source: Internet
Author: User
Tags sqlite

Databasehelper.java

package Com.example.android_sqlite.database;import Android.content.context;import Android.database.sqlite.SQLiteDatabase ; Import Android.database.sqlite.sqlitedatabase.cursorfactory;import Android.database.sqlite.SQLiteOpenHelper;            public class Databasehelper extends Sqliteopenhelper {/** * * @param context *: Context Object * @param name * : Database name * @param factory *: Cursor Factory object, you can set NULL. With default Cursorfactory object * @param version *: Database version number */ Public Databasehelper (Context context, String name, cursorfactory factory,int version) {Super (context, name, factory, ver sion);} /** * This method is called when the database is first created */@Overridepublic void OnCreate (Sqlitedatabase db) {db.execsql ("CREATE TABLE Users (userid Integer PRIMARY key autoincrement,username varchar (20));} /** * This method is automatically called when the version of the database is upgraded (depending on the version number of the database) */@Overridepublic void Onupgrade (sqlitedatabase arg0, int arg1, int arg2) {}}


Test class

Package Com.example.android_sqlite.test;import Com.example.android_sqlite.database.databasehelper;import Android.test.androidtestcase;public class Databasetese extends Androidtestcase {public void CreateDatabase () { Databasehelper dh = new Databasehelper (GetContext (), "csdn.db", NULL, 1);d h.getwritabledatabase ();}}

Output Result:



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.