jrdc2

  1. saeed10051

    Android Question How jRDC2 can be used to access an online database

    I have reviewed the jRDC2 tutorial in which Erel has taught about accessing a database situated on a local pc. I have a mysql database on infinity free online database hosting site. How can i access it by implementing client side coding in B4A. Where i need to keep the DbrequestManager.bas file...
  2. A

    Android Question Load Mysql table into B4XTable

    Hello everyone. I'm trying to load Mysql database table data into B4XTable by using JRDC2. I can print results in logs. But the data is not showing in B4XTable columns it shows table empty. Anyone can explain how to load result rows into B4XTable? Thank you.
  3. Martin Fdez

    B4J Question jRDC2 connection to MSSQLServer failed

    Hi, I'm using jRDC2 to connect to MSSQLServer DB in all my projects with no problems in several servers, today after installing all the requirements and from jRDC2 source running in Debug mode (I tested in Release too), I tested using the browser with localhost and this message appears...
  4. I

    Android Question [SOLVED] JRDC2 IN Operator

    Sorry, pheraps this is a noob question.. How can i use IN operator with JRDC2? Dim cmdList As DBCommand = Db.CreateCommand(Query, Array (X,"763043,763054,755123,759006")) This return 0 records This is in properties.config sql.xxx=SELECT Cat, prod, x FROM supprod where id = ? and...
  5. M

    B4J Question jRDC2 Dynamic Config selection

    Hi All This is my first post so please be gentle :) and I am still pretty new to B4J but have already learnt a great deal from this fantastic community. It looks like it is not possible but thought I would put it out there anyway to see if anyone has thought of or created an alternative...
  6. A

    B4J Tutorial Testing jRDC2 start to end on a VM

    Hi I have wrote this just in case someone needs to implement the jRDC2 on a VM on cloud, I know a lot of members already know this and it is definitely not a new information, but for someone that have not tried this before I think it will be useful to have a start to end process. Steps in...
  7. M

    B4J Question jrdc2

    Hi ; I´m running the jrdc2 , and change the parametres to use with firebird database. with : DriverClass=org.firebirdsql.jdbc.FBDriver JdbcUrl=jdbc:firebirdsql://localhost:3050/C:\CAJA40.FDB User=SYSDBA Password=masterkey #Java server port ServerPort=17178 buts sends me the following message...
  8. Alexander Stolte

    B4J Question jRDC2 PostgreSQL how to call procedures

    Hello, how can i call procedures in jRDC2 on PostgreSQL? I call it so: CALL myprocdeure(?,?) but jRDC2 says: org.postgresql.util.PSQLException: ERROR: procedure sdbspget_checkuser(character varying, character varying, character varying, character varying) does not exist Hinweis: No procedure...
  9. David Hawkins

    B4J Question jRDC2 SET IDENTITY_INSERT Tablename ON

    Hi, I have an MS SQL server for which I have the 'sa' password and I am trying to send a command, please see below: - Private Sub SetInsertOn 'Dim req As DBRequestManager = CreateRequest Dim cmd As DBCommand = CreateCommand("set_Insert_On", Null) Dim j As HttpJob =...
  10. C

    B4J Question JRDC2 Error fetching connection

    Hello, I am facing this problem trying to use JRDC in a Synology server. Downloaded latest Mariadb and Postgres drivers I created the JRDC.jar with B4J 6.51. The same error occurs when trying to use Mariadb or Postgres. I can reach any of the databases using a client administrator from my pc. I...
  11. E

    Spanish EJEMPLOS VARIOS: Modelo cliente-servidor con MySQL, ODBC,ANDROID,WAMP etc.

    Buenas a todos. En este enlace https://mega.nz/#!jKRDXCgT!3BgdgywykwpV4tXfR5A6s7lemuvj0Pl8DUnKajYkB0Q podran descargar un zip con ejemplos de modelo cliente servidor. Veran que no es nada nuevo pero: No fallan con las ñ y acentos. Corren en las versiones ultimas de WAMP (mysql vs msqli) Hay...
  12. WadeFisher

    B4J Question jRDC2 b4j and b4a: Client gets .EOFException

    jRDC2 servlet appears to be running fine. Using the tutorial example. When calling the jRDC2 servlet from B4A or B4J UI app I am getting an EOF exception. The error comes on this call in the BDRequestManager.bas ser.ConvertBytesToObjectAsync(data, "ser") Public Sub HandleJobAsync(Job As...
  13. WadeFisher

    B4J Question jRDC: java.sql.SQLException: No suitable driver

    Trying to follow the jrDC2 Tuturial but can not get past the connection trial using the browser. I am using the same connection string that I use on my UI program which works fine. The jrRDC example server is running on my development desktop, the MariaDB10 data base is running on a server on...
  14. R

    Android Question Problem with JRDC2 / java and "Object should first be initialized"

    Hello, I'm facing a big problem with an app developed in B4A already on production, that is driving me crazy. The problem started this morning with no reason. I was working yesterday and sent an update to customer to check everything was ok before upload it to google play. until this morning...
  15. MarcRB

    B4J Question How to handle Jrdc2 in multi form application

    Hi, I am experimenting with B4J and specific with Jrdc2. I followed the great example and it works nice, but I can only access the database in main module. Because I will use it in a multi form application, where each form has it's own code-module I was looking for a way to move the JRDC...
  16. Alexander Stolte

    B4J Question jRDC2 handling with 50+ commands

    Hello Community, i develope a "little" big social media App and i'm using Currently 3 jRDC's, because I have quite a few SQL commands now (50+). But this is a big security risk, because with HTTP and HTTPS there are 4 more open ports on the Server and 2 more sub domains, which I have to deposit...
  17. TIMX

    Android Question Attempt to write to field 'boolean anywheresoftware.b4a.samples.httputils2.httpjob._success'

    Hi, Please I need some lights, I include the resumable subs to get register from remote database, but the problem persist. Exactly occurs when I click on Login from Main Activity to navigate to ModPrincipal and I click egain on return key an wait 30 seconds in Main Activity then exception...
  18. EnriqueGonzalez

    B4J Question JRDC2 DBCommand.Name = null

    Hi! I have a problem with jrdc2, please look at the images, dbcomand.name value is ok when converted with the b4xSerializator but when it arrives at the server the value is null. Thanks!
  19. A

    Android Question How to Setup JRDC2 on hosting server like GoDaddy etc.

    [B4X] jRDC2 - B4J implementation of RDC (Remote Database Connector) hi I want to know that ho to configure or run jrdc2 service on hosting server like goDaddy where we have not server pc, how to install service and start service there. and use jrdc2 for b4a. I want to connect MSSQL database...
  20. M

    Android Question [SOLVED] jRDC & sqlite image blob retrieval and display in imageview

    SOLVED: B4A project using jRDC on local and remote servers just fine however I can't nut out how to successfully convert a retrieved blob from sqLite db and display image in an imageview. the update/insert side is this: Dim req as dbRequestManager Dim sSQL() As String Dim Buffer() As Byte...
Top