B4A Library JdbcSQL - Directly connect to remote databases - Erel    Sep 17, 2017   (35 reactions)   tags: Conector SQL, RemoteDB, remote db, jDBCSQL, sql connect local remote This is a port of B4J jSQL library. The SQL type was renamed to JdbcSQL and ResultSet was renamed to JdbcResultSet, this allows using it together with the SQL library. SQL library - local SQLite databases. JdbcSQL - Any remote SQL database with a supported JDBC driver. MySQL and MS SQL... updating the app. - Server and client performance issues - The Jdbc drivers are not optimized for.... As explained in the jSQL tutorial, you need to copy the jdbc jar to the additional libraries folder... B4A Question MSSQL-JDBC Minimalistic Example - Charles Biba    Mar 12, 2018 Ok... I am trying to get B4A to connect to an in-house MSSQL server (2014) using a direct JDBC... to SQL in the libraries manager. #AdditionalJar: mssql-jdbc-6.2.2.jre7.jar I declared an sql... event. In there i am trying to execute: sql1.Initialize("com.microsoft.sqlserver.jdbc.SQLServerDriver","jdbc:sqlserver://172.21.1.100:1433/TEST_CB;user=android;password=andy",False....sqlserver.jdbc.SQLServerDriver","jdbc:sqlserver://172.21.1.100:1433;integratedSecurity=false;user... B4J Library SQLite JDBC - Library version updates - Claudio Oliveira    Aug 8, 2022   (16 reactions) Hi everybody!
This thread is supposed to get all SQLite JDBC library version links together so... have new JDBC versions.
All information contained herein has been taken from Mr. Taro L. Saito (xerial... Wish Update sqlite-jdbc-3.7.2.jar dependency in B4XTable - aeric    Aug 5, 2024   (4 reactions) sqlite-jdbc-3.7.2.jar is the default SQLite JDBC library comes with B4X IDEs installation... version of SQLite JDBC library, I am getting the following error:
java.sql.SQLException: SQL error or... B4J Code Snippet jtds jdbc driver with standalone package - Erel    Aug 25, 2021   (11 reactions) .sourceforge.jtds.jdbc.Driver", "jdbc:jtds:sqlserver://localhost:1433/test;instance=SQLEXPRESS;?user... B4J Code Snippet MySQL / MariaDB jar, driver and jdbc url - Erel    Aug 13, 2025   (13 reactions) MySQL 1. Jar is available here: https://dev.mysql.com/downloads/connector/j/ Choose the Platform Independent option. Put the jar in the additional libraries folder. 2. Add jSQL library and a reference to the jar (change version as needed): #AdditionalJar: mysql-connector-j-9.4.0 3. Driver + url: sql.Initialize2("com.mysql.cj.jdbc.Driver", "jdbc:mysql://localhost.... sql.Initialize2("org.mariadb.jdbc.Driver", "jdbc:mariadb://localhost/database_here... B4J Question Sqlite-jdbc update problem - drgottjr    Oct 19, 2023   (3 reactions) regarding https://www.b4x.com/android/forum/threads/sqlite-jdbc-library-version-updates.133792... that i've fallen behind on updating Sqlite-jdbc. (and many thanks to forum memberr oliveira for, at least... B4J Question config.properties - MS Sql driver for JDBC - Peekay    Jun 10, 2020 I am trying to change the tutorial code for mysql to MS Sql, but I have it wrong. This is my code: DriverClass=com.Drivermicrosoft.sqlserver.jdbc.SQLServerDriver JdbcUrl=jdbc:sqlserver://localhost/test?characterEncoding=utf8 I could not find the correct connection string elsewhere on the forum. Thanks PK... B4J Code Snippet [DBF] Reading Visual Foxpro DBF using JDBC - aeric    Dec 14, 2021   (8 reactions) This snippet demonstrates how to use FoxPro JDBC Driver to read DBF file. The driver read the DBF file and generate a H2 cache in C:/Users/<UserName>/.DbSchema/jdbc-dbf-cache/ Compare to jDBF... more. Download FoxPro JDBC Driver: https://dbschema.com/jdbc-drivers/FoxProJdbcDriver.zip More info: https://dbschema.com/jdbc-driver/FoxPro.html GitHub: https://github.com/wise-coders/dbf-jdbc-driver...: javadbf-1.13.2 #AdditionalJar: dbschema-dbf-jdbc1.0.jar #AdditionalJar: h2-1.4.200.jar '... B4A Question How to connect to MSSQL with JdbcSQL - catyinwong    Jul 23, 2018 Not quite understand what changes should be made if I want to connect to a MSSQL #AdditionalJar: jtds-1.3.1 Public mysql As JdbcSQL Private driver As String = "com.mysql.jdbc.Driver" <- what to change?? Private jdbcUrl As String = "jdbc:mssql://192.168.0.6/test" Private Username As String = "username" Private Password As String = "password"... Page: 1   2   3   4   5   6   7   |