-
Notifications
You must be signed in to change notification settings - Fork 150
FAQs
FahimF edited this page Jul 4, 2014
·
24 revisions
-
How do I create a blank SQLite database?
You can use something like the SQLite Manager extension for Firefox. Or, you can use any of the commonly available SQLite front end tools such as:
-
Do you plan to add support for SQLite's bind API methods?
No. Currently, there are no plans to add support for the bind methods since you can easily create an SQL statement with variables by simply creating a String with the appropriate variable values inserted where necessary. For example:
let sql = "SELECT * FROM clients WHERE name=\(name)"