Yohendhira
Yohendhira

Reputation: 1

How do i create sqlite DB without using WebSQL API?

How do i create SQLite DB without using WebSQL API?(for Google Chrome browser). i want to create synchronized API for SQLite database . Using Extensions if it is possible Any help is appreciated

Upvotes: 0

Views: 364

Answers (1)

Mike West
Mike West

Reputation: 5143

There's no secondary interface to SQLite inside of Chrome that extensions generally have access to; WebSQL is it. You might want to take a look at the Storage API, which gives you a syncable data-storage system that looks a lot like local storage. Perhaps that suits your use-case?

Upvotes: 1

Related Questions