This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

SQL server on Wiser
#4
Table can be created like this. You will need some clean-up procedure otherwise the database size will keep increasing until it hits a hard limit and some parts of the system won't function properly anymore. For other SQL commands check this: https://sqlite.org/lang.html
Code:
db:query([[
  CREATE TABLE IF NOT EXISTS my_config (
    key TEXT PRIMARY KEY,
    value TEXT
  )
]])
Reply


Messages In This Thread
SQL server on Wiser - by sx3 - 20.12.2022, 11:25
RE: SQL server on Wiser - by admin - 20.12.2022, 11:34
RE: SQL server on Wiser - by sx3 - 21.12.2022, 07:04
RE: SQL server on Wiser - by admin - 21.12.2022, 09:28

Forum Jump: