HTML5 database storage (SQL lite) - few questions

前端 未结 5 849
一生所求
一生所求 2020-11-30 01:51

Hy there,

I can\'t find enough beginner resources on the web about HTML5 database storage usage examples (CRUD)

I\'m opening(creating) my DB like this:

5条回答
  •  醉话见心
    2020-11-30 02:44

    CREATE TABLE IF NOT EXISTS table_name
    

    will create a table table_name only if if does not exist.

提交回复
热议问题