B4J Tutorial SQL Tutorial - Erel    Dec 8, 2013   (6 reactions) B4J jSQL library is similar to Basic4android SQL library.
This tutorial will cover the differences.../android/forum/threads/sql-tutorial.6736/#content
jSQL library is not tied to any specific SQL engine... B4A Tutorial [B4X] B4XTable - Load data from SQL database - Erel    Feb 10, 2019   (34 reactions)   tags: b4xtable B4XTable.SetData expects a List where each entry in the list is an array of objects with the data of a single row. The data can come from any source you like. https://www.b4x.com/basic4android/images/SS-2019-02-10_15.49.29.png Example of loading the data from a SQL database: B4XTable1.AddColumn....Initialize Dim rs As ResultSet = sql.ExecQuery("SELECT CustomerId, FirstName, LastName... the Data list with the data coming from the SQL db. Step #3: call B4XTable.SetData. B4A project... B4J Code Snippet [B4X] MiniORMUtils - SQL Query Builder - aeric    Mar 9, 2025   (21 reactions) Updates Version 2.00 is available https://www.b4x.com/android/forum/threads/b4x-miniormutils.166030/ MiniORMUtils Version: 1.17 This library can be use for creating db schema and performing CRUD operations. It is suitable for Web API Template or any database system. Currently it supports SQLite and MySQL (B4J). B4X project template Version: 1.06 https://www.b4x.com/android/forum/threads/b4x-project-template-miniorm.165499/ Examples: Initialization Dim MDB As MiniORM MDB.Initialize... B4A Tutorial [B4X] SQL with Wait For - Erel    May 15, 2017   (22 reactions)   tags: wait, Wait For, Resumable Sub, SQL Wait For progress web, SQL . The new standard way to insert data is: For i = 1 To 1000 sql.AddNonQueryToBatch("INSERT INTO table1 VALUES (?)", Array(Rnd(0, 100000))) Next Dim SenderFilter As Object = sql.ExecNonQueryBatch("SQL") Wait For (SenderFilter) SQL_NonQueryComplete (Success As Boolean) Log... will be caught by the correct Wait For call in all cases. - Note that SQL.ExecNonQueryBatch begins... therefore be issued synchronously with SQL.ExecQuery2. However if there is a slow query then you should... B4J Code Snippet [Project Template] jRDC2 Server (SQLite, MySQL, MS SQL, Firebird, Postgresql, DBF) - aeric    Feb 20, 2025   (16 reactions) Updates jRDC2 Server v2 is available jRDC2 Server Template Version: 1.12 (based on jRDC2 version 2.23) Create a new project and run it! To be accompanied with jRDC2 Client Template Introduction: To be edited 147014 Version 1.00 : 9KB Version 1.11 : 127KB Version 1.12 : 127KB Version 2.00 (beta) : 127KB Note: If you think the latest version is big, you can use version 1.00 otherwise yo... B4A Code Snippet [B4X] SQL - setting the journal mode - Erel    Nov 21, 2021   (8 reactions) The modes are explained here: https://www.sqlite.org/pragma.html#pragma_journal_mode The two cases where it is important to set the journal mode: 1. WAL - B4J server solutions: https://www.b4x.com/android/forum/threads/webapp-concurrent-access-to-sqlite-databases.39904/#content 2. DELETE - when it is important that the database will be made of a single file. sql.ExecQuerySingleResult("PRAGMA journal_mode = delete") Log("Current mode: " & sql.ExecQuerySingleResult... B4J Code Snippet [SQL] DButils v.2.5 for SQLite and MySQL - peacemaker    Oct 11, 2023   (4 reactions) classes), but MySQL also, due to big size that now is more convenient to see via web-browser... DButils2 from Erel: https://www.b4x.com/android/forum/threads/b4x-dbutils-2.81280 module with MySQL... to switch the db type (SQLite or MySQL) during usage: 'MySQL additions: 'Added to give EscapeField more flexibility Public Sub SetEscapeChars(MySQL As Boolean) If MySQL Then escapeCharStart = "`" escapeCharEnd = "`" isMySQL = True Else... B4J Tutorial [Web][SithasoDaisy] Deciding on Shared Hosting vs VPS Hosting - The Vehicle Expense Tracker WebApp Use Case (PocketBase & MySQL) - Mashiane    Apr 30, 2024 (PocketBase) and also a new version using Secure Api Key MySQL REST API.
When developing webapps, one...
This webapp helps you learn how to use MySQL REST API using a secure Api Key, this you can deploy shared... these applications is that they share 99.99% code. Really? Yes.
Let me explain
1. In the MySQL REST API example... the MySQL REST API example, the connection string is https://localhost/sdvetmysqlapi vs the PocketBase... B4J Tutorial SQLite or MySQL database - peacemaker    Oct 12, 2023   (4 reactions) copying is needed any time when changed data. Server database like MySQL, MariaDB can be explored... installed, configured, db user rights and user privileges done... MySQL needs JDBC driver connector... tool, like Adminer https://www.adminer.org/ that supports SQLite db as well as default MySQL one. And... version 4.8.1 (can be updated from the project web-site), used for access to MySQL or other web-base... B4J Tutorial [BANano] Working with BANanoSQL - alwaysbusy    Jan 27, 2019   (9 reactions) BANanoSQL makes it possible to use 'normal' SQL queries on the IndexedDB database located in the browser. There are three ways on how to work with BANanoSQL: 1. Event Driven... guide the process. Advantage: it can raise an Error Event in case e.g. an SQL is malformed.... Sub BANano_Ready() SQL.Open("SQL", "bananodb") End Sub Sub SQL_SQLOpened() SQL.Execute("CREATE TABLE IF NOT EXISTS flights (flightNo INT, fromCity STRING, toCity... Page: 1   2   3   4   5   6   7   |