Start at the Beginning

 

No databases are automatically supplied to you by Android. If you want to use SQLite, you have to create your own database, then populate it with your own tables, indexes, and data.

To create and open a database, your best option is to craft a subclass of . This class wraps up the logic to create and upgrade a database, per your specifications, as needed by your application. Your subclass of will need three methods:

• The constructor, chaining upward to the constructor. This takes the (e.g., an ), the name of the database, an optional cursor factory (typically, just pass ), and an integer representing the version of the database schema you are using.

• , which passes you a object that you need to populate with tables and initial data, as appropriate.

• , which passes you a object and the old and new version numbers, so you can figure out how best to convert the database from the old schema to the new one. The simplest, albeit least friendly, approach is to simply drop the old tables and create new ones. This is covered in greater detail in Chapter 28.

The rest of this chapter will discuss how you actually create tables, insert data, drop tables, etc., and will show sample code from a subclass.

To use your subclass, create an instance and ask it to or , depending upon whether or not you will be changing its contents:

 

 

This will return a instance, which you can then use to query the database or modify its data.

When you are done with the database (e.g., your activity is being closed), simply call on the to release your connection.

 








Дата добавления: 2015-05-16; просмотров: 651;


Поиск по сайту:

При помощи поиска вы сможете найти нужную вам информацию.

Поделитесь с друзьями:

Если вам перенёс пользу информационный материал, или помог в учебе – поделитесь этим сайтом с друзьями и знакомыми.
helpiks.org - Хелпикс.Орг - 2014-2024 год. Материал сайта представляется для ознакомительного и учебного использования. | Поддержка
Генерация страницы за: 0.003 сек.