B4J Library [B4X] jRDC2 - B4J implementation of RDC (Remote Database Connector) - Erel    Mar 13, 2024   (42 reactions)   tags: RDC, jRDC2, conectate a un servidor, Remote Connector, DB Remote, Myapp database servers. jRDC2 is the latest version. All new projects should use this version. jRDC2... the SQL commands against the database and returns the results. In many cases the server will be hosted on the same computer that hosts the database server. - Client module. The client which... can work with any database that provides a JDBC driver. All popular databases are supported... each database platform. You will usually find the specification together with the required driver... B4A Tutorial Android database encryption with SQLCipher library - Erel    Jul 20, 2025   (24 reactions) it. SQLCipher is an open source project that extends SQLite and adds full database encryption. License...). Password is the database password. You can pass an empty string if there is no password. Note that it is not possible to change the password (or set a new password) to an existing database. Code... compatible by default with databases created with older versions. See this link: https://www.zetetic.net...://repo1.maven.org/maven2/net/zetetic/android-database-sqlcipher/4.5.4/android-database-sqlcipher-4.5... B4A Tutorial Remote Database Connector (RDC) - Connect to any remote DB - Erel    Jan 10, 2021   (19 reactions)   tags: JRDC -database-connector.61801/ This tutorial covers a new framework named Remote Database Connector (RDC... database servers. There are two components in this framework: a lightweight Java web server... can connect to any database platform that provides a JDBC driver. This includes: MySQL, SQL Server... without a database server by connecting to a local SQLite database file. The Java web-server is a simple server that connects to the database server and to the Android clients. As this is a Java app... B4J Tutorial [WebApp] Concurrent access to SQLite databases - Erel    Nov 21, 2021   (15 reactions) SQLite databases are very easy to use as they don't require any additional software or configuration. SQLite support for concurrent access is not comparable to server based databases... databases. You need to follow these instructions: - Use a single SQL object that is shared by all classes. Don't use a ConnectionPool with SQLite database. - When you create the database you need to....html This mode allows multiple readers and a single writer to access the database at the same time... 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 databases. JdbcSQL - Any remote SQL database with a supported JDBC driver. MySQL and MS SQL are supported. Others are also supported. The recommended method to connect to remote databases is jRDC2: https://www.b4x.com/android/forum/threads/61801/#content Connecting to the database directly has... password and directly access the database. - Hard to maintain - changes to the database design will require... to a remote database, all requests must be asynchronous. It is quite simple to make asynchronous... B4A Tutorial Connect Android to MySQL Database Tutorial - Erel    Sep 20, 2018   (29 reactions) it is a MySQL database. A tutorial for connecting to SQL Server is available here. Android cannot connect directly to the database server (search for JdbcSQL). Therefore we need to create a simple web service that will pass the requests to the database and will return the response. For this example I've created a new database that lists the countries population. The data was derived from a UN database. The database includes a single table named "countries" with three columns: http://www... B4J Question [BANanoVueMaterial] How to create dynamic data-table from database schema & data [SOLVED] - micro    Aug 25, 2020   (1 reaction) Hi the next step .....but always with the same problem of updating the component (VMDataTable) dt1 = VMDataTable in a module gestDatiArc is show and only the indication of the number of records in the pagination is updated but it does not show the name of the columns and records I read as you recommended (mashiane) the tutorial on VUE but it is not clear to me why dt1 does not update With Log(dt1... B4J Code Snippet Opening MS Access databases (mdb) - Erel    Nov 24, 2021   (18 reactions)   tags: open mdb . 5. Open the database: 'SQL object from jSQL library sql.Initialize("net.ucanaccess.jdbc... B4A Tutorial DBUtils - Android databases are now simple! - Erel    Jul 3, 2017   (14 reactions)   tags: DButils, SQLite, DB Latest version available here: https://www.b4x.com/android/forum/threads/b4x-dbutils-2.81280/ The DBUtils code module is designed to help you integrate SQLite databases in your program. It contains..., the following methods are included: - CopyDBFromAssets: Copies a database file stored in the APK package.... - GetDBVersion / SetDBVersion: Gets or sets the database version. The value is stored in a separate table named DBVersion. This is useful to manage updates of existing databases. This feature was implemented... 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("Customer Id", B4XTable1.COLUMN_TYPE_NUMBERS) B4XTable1.AddColumn("Name"... is attached. Database source: http://www.sqlitetutorial.net/sqlite-sample-database/... Page: 1   2   3   4   5   6   7   |