How to Set SQLite primary key

Source: Internet
Author: User

Create table statement: Create Table classinfo (_ id integer primary key, name varchar (20), teacher varchar (20), classroom varchar (20), startweek int, endweek INT ); 

Insert data statement: 

Contentvalues values = new contentvalues ();

Values. Put ("name", (string) classinfo [0]);

Values. Put ("teacher", (string) classinfo [1]);

Values. Put ("classroom", (string) classinfo [2]);

Values. Put ("startweek", (string) classinfo [3]);

Values. Put ("endweek", (string) classinfo [4]);

Dbinfo. insert ("classinfo", null, values );//DbinfoIs the database name, And classinfo is the table name

Key points:

When creating a table, define the ID
Integer primary key,

When inserting,IDNo insert, The effect ID is increased from 1

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.