
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?
¿Hay limite de parametros en consulta SQL (SQLite)?
Jan 31, 2019 · Hola: Os comento. Tengo una base de datos con una tabla -en realidad mas de una tabla, pero solo se hace consulta a una- , de esta necesito extraer los totales de ciertos campos que …
Is there a max character length of a SQLite field (TEXT/VARCHAR)?
Oct 10, 2017 · Hi. Quick question. Is there a limit to the number of characters a field in SQLite can accept? I’m currently working on a study guide with various modules/chapters. I’ve been sub …
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 gets …
SQLite database password - Databases - Xojo Programming Forum
Jun 26, 2024 · When we use the password, does that actually result in a truly encrypted database? Or are we just relying on programs not peeking past the gate, so to speak, when a password is incorrect?
Licensing Q - General - Xojo Programming Forum
Aug 5, 2025 · About to purchase my first Xojo Desktop license, but have a Q: Can I install it on more than one device for development? i.e. my app is for Windows and macOS, so I need to debug on …
SQLite INNER JOIN Issue - Databases - Xojo Programming Forum
Jun 4, 2019 · My Web App is coming along pretty well. But I’ve had trouble regarding an INNER JOIN. I’ve checked the SQLite Statement in SQLiteStudio and it returns perfectly what I’m looking for with …
TabIndex - Web - Xojo Programming Forum
Jun 20, 2025 · On Web can the TabIndex of a WebTextField be specified at design time without adding code? Just getting back into Xojo and haven’t really used Web 2.0 so hopefully these are not dumb …
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 manually …
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 (“UserPassword”).StringValue So Hash1 = …