
Windows Alternative to Base - Windows - Xojo Programming Forum
Jun 15, 2018 · I use Base.app on macOS as a SQLite browser. What is the best product like this for Windows?
Storing currency values in SQLite database - Databases - Xojo ...
Aug 1, 2017 · What is the currently recommended way to store currency values in s SQLite database? I see the following in the Xojo docs: [quote] Use the REAL data type to store …
REALSQLDatabase -> SQLiteDatabase: How to turn off AutoCommit
Mar 15, 2019 · I’m going to update a couple of older projects that are still using REALSQLDatabase with using SQLiteDatabase. Quite some functions are currently setting …
Refreshing a SQLite DB - Xojo Programming Forum
Sep 21, 2022 · Getting Started Armando_SORBI (Armando SORBI) September 21, 2022, 6:44am 1 Hello, I created a SQLite DB in which cells in a column change background color according …
SQLite: delete a Column ? - Databases - Xojo Programming Forum
Dec 7, 2016 · Where I have needed this I have created the new column (ALTER TABLE ADD columnName TEXT), copied the data from the old column (UPDATE tableName SET …
SQLite Duplicate Record - Databases - Xojo Programming Forum
Sep 12, 2017 · I need to build a temporary table from a complex selection of records from a SQLite table. Is there a way to duplicate the record from one table into another table without …
SQLite 1000 row limit?! - General - Xojo Programming Forum
May 18, 2016 · Hi All, I’m writing to a SQLite database, and after 1000 rows it isn’t taking any more inserts. There is no error, the insert statement completes successfully but the row just …
A Thread on Building the What The Fly? App - Xojo Programming …
Feb 8, 2024 · The other tools (apps) I think I will use are DBKit, SQLite, SQLiteStudio, OmniGraffle, BBEdit, Perl, and perhaps some XOJO plugins. Next, a couple of conventions I …
Unable to drop a Column in SQLite - Xojo Programming Forum
Jul 2, 2022 · SqLite does not support dropping a column. You have to create a copy of the table (along with its data), drop the original table, recreate the original without the column, and copy …
How to store a hashed password in an SQLite DB?
Apr 3, 2014 · Dim rs As RecordSet = DB.SQLSelect (“SELECT * FROM Users WHERE UserName = '”+textfield1.text+"’ " Dim Hash2 As String = rs.Field …