About 17 results
Open links in new tab
  1. 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?

  2. 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 …

  3. 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 …

  4. 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 …

  5. 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 …

  6. 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 …

  7. 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 …

  8. 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 …

  9. 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 …

  10. 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 …