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 260642577 RDC is a middleware server that makes it simple to safely connect clients and remote SQL database servers. jRDC2 is the latest version. All new projects should use this version. jRDC2... is compatible with B4A, B4J and B4i is responsible for sending the requests and handling the responses. jRDC2... name of the server hosting jRDC2. It must end with /rdc. 2. Add DBRequestManager class to your project.... - Extending jRDC2 to support B4R: https://www.b4x.com/android/forum/threads/rdc-based-on-mqtt.72416... Spanish [TUTORIAL] Acceder a base de datos con jRDC2 - josejad    Apr 15, 2025   (7 reactions) .NET, etc... 3.- jRDC2: Es la forma recomendada por Erel para acceder a base de datos y sobre la que nos centraremos en este tutorial. Las ventajas de jRDC2 son: Soporta la mayoría de las bases de.... Soporta todo tipo de consultas, incluidas consultas BATCH (por lotes) Soporta BLOB's jRDC2... puede usar en B4A, B4i o B4J. Por tanto, para usar jRDC2, necesitas ejecutar la aplicación servidor (un... de librerías adicionales de B4J - Descarga el código fuente del servidor B4J del tutorial jRDC2 (o... Spanish [B4XPages] jRDC2 + MySQL CRUD + Login - josejad    Feb 24, 2022   (14 reactions) login, etc... pero he visto pocos con jRDC2. Los datos de la base de datos y la interfaz gráfica son... crear el servidor jRDC2 - B4A 9.9+ que ya soporta B4XPages, aunque lo ideal es siempre actualizar... sql a tu base de datos. Puedes usar phpMyAdmin, HeidiSQL, etc… - Configurar el servidor jRDC2. Para...-database-connector.61801/ - Abre B4A, y en la clase jRDC2, cambia la constante rdcLink para que apunte al ordenador en el que estás ejecutando el servidor jRDC2 (B4J). (Puedes verlo con ipconfig en windows... Share My Creation jRDC2 server with login session - aeric    May 20, 2025   (6 reactions) https://www.b4x.com/android/forum/attachments/jrdc2-server-png.162504/ A jRDC2 server with login session modified from jRDC2 Server. This project is currently a proof of concept. It demonstrates a login test using email and password to return a session id. This session id is required... if you are interested. GitHub: https://github.com/pyhoon/jrdc2-with-session-b4j I don't use jRDC2 but if anyone wants to make his jRDC2 more secure, he can check this project to get some ideas... Share My Creation jRDC2 server authentication + console client - aeric    May 7, 2025   (7 reactions) Update Here is another example using session id https://www.b4x.com/android/forum/threads/jrdc2-server-with-login-session.166903/ Simple jRDC2 server authentication example with user name and password This example is based on this solved question for learning purpose. If user name and... password. GitHub: https://github.com/pyhoon/jrdc2-server-authentication-b4j 156611... app to connect to the server. Edit the rdcLink host IP in Main module. console.jar need to be run... Share My Creation [Project Template] jRDC2 Server - aeric    Mar 12, 2025   (5 reactions) Version: 3.10 Project template based on jRDC2 version 2.23 with sample database. 162504 GitHub: https://github.com/pyhoon/jrdc2-server-template-b4j Template: JRDC Server (3.10).b4xtemplate Supported databases: SQLite MySQL MS SQL Firebird Postgresql DBF Depends on: JavaObject jRandomAccessFile jServer jShell jSQL B4X Client app: jRDC2 Client (B4J, B4A, B4i) Version 1.x is available here: https://www.b4x.com/android/forum/threads/project-template-jrdc2-server-sqlite-mysql-ms-sql... B4J Library Modded jRDC2 w/SQLite support and more - OliverA    Jul 28, 2024   (15 reactions) Attached you'll find a modified version of jRDC2 (source https://www.b4x.com/android/forum... replacement for jRDC2. This is more meant for people starting new with jRDC2. Comments are welcome... procedures add-on is technically unnecessary. Out of the box, jRDC2 can handle simple stored... to test the jRDC2 server against. Finally, you have to have patience with me, I'm slow. Client... AppNotes) ' Merge changes from @Erel's jRDC2 version 2.23 ' Merged MSSQL date issue... B4J Tutorial jRDC2 client example (using modded jRDC2) - OliverA    Jul 28, 2024   (7 reactions) Attached you find an example of accessing a jRDC2 server. This is a conversion of the DBUtils... use the modded jRDC2 server (here: https://www.b4x.com/android/forum/threads/modded-jrdc2-w-sqlite... uncaught exceptions errors that I triggered in the original jRDC2 code (here: https://www.b4x.com... note that I create a "helper" code module jRDC2Utils that encapsulates some of the jRDC2... it shows a small glimpse of jRDC2. 2024/07/27: Moved notes from Main to here (code module... 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 you can remove the images inside www/img or use smaller size images.... B4J Library [python] jRDC2 Python client - Erel    Jan 15, 2025   (13 reactions) Start here: https://www.b4x.com/android/forum/threads/python-b4xserializator-implementation-in-python.165109/ Depends on: pip install requests Example: from db_request_manager import DBRequestManager, DBCommand if __name__ == '__main__': req = DBRequestManager(connector_link="http://127.0.0.1:17178/rdc") req.execute_batch() print("table created successfully") commands = with open(r"C:\Users\H\Downloads\1.jpg", "rb") as f... Page: 1   2   3   4   5   6   7   |