Android Example [B4XPages] jRDC2 + MySql CRUD + Login

Hi all:


I'm starting (at last) to work with B4XPages, so I've started to adapt the B4XPages + B4XDrawer example.
I think I’ve seen more examples with php + mysql, but no projects with Jrdc2.

Maybe the dummy data and the UI are too basic, but you can get some ideas.

What do we need?
- A mysql database. You can use XAMPP, LARAGON or any other project to set it up. See attached a sql file to import in your database. The database name will be B4X.
- B4J to create the jRDC2 server
- B4A 9.9+ to support B4XPages. As always, you should update B4A to the last versión (10.5 when this post have been write)

Steps:
- Import the sql file to you database. You can use phpMyAdmin, HeidiSQL, etc…
- Configure jRDC2 server. Open the attached B4J file and change your user and password in the config file.
- Open B4A, and change the rdcLink const in the jRDC2 class to match the IP of the computer where you’re running the jRDC2 server (B4J)
B4X:
Sub Class_Globals
    'CHANGE THE IP TO MATCH YOUR B4J SERVER
    Private const rdcLink As String = "http://192.168.1.131:8090/rdc"
End Sub
- To add, edit... we will use B4XPreferencesDialog. You should use the Form Builder to build the forms. It's important that the key values match with database's fields names, due to we will construct a map from the rs returned from the db, and it will be easier to work this way, passing this map to the B4XPreferences dialog.

I've commented the code the best I can.
If you think there are some mistakes or you know some way to improve the example, you're welcome to do it.
I've tried to make the B4J project too, but I've never used B4J and I get too many errors. If someone want to do it, we will learn something more. (or B4i)
EDIT: Updated project and now it works with B4J and B4A (maybe in B4i)

The password for all the users is: 1234 (stored as md5)

sql.Login = SELECT * FROM B4X.users WHERE `username` = ? AND `password` = md5(?)
sql.getEvents = SELECT * FROM B4X.events WHERE `month` = ? AND `id_user` = ?
sql.updateEvents = UPDATE B4X.events SET `month`=?,`event_type`=?,`description`=? WHERE `id` = ?
sql.deleteEvents = DELETE FROM B4X.events WHERE `id` = ?
sql.addEvents = INSERT INTO B4X.events(`id_user`, `month`, `event_type`, `description`, `value`) VALUES (?, ?, ?, ?, ?)
 

Attachments

  • jRDC_B4J.zip
    5.4 KB · Views: 1,020
  • sql.zip
    1.5 KB · Views: 1,037
  • Project.zip
    207.2 KB · Views: 1,245
Last edited:

Timm

Member
I eventually put the localhost ip, but still can not connect /192.168.43.86:8090.
My real question is how do I run the server and the client to communicate together.
Do I need to put the client and server folder in the same wamp/www/ directory. Am using wampserver for mylocalserver. Normally from my php background, I put all this files: server file and client file in ../www/ folder
 

josejad

Expert
Licensed User
Longtime User
Please, refer to the jRDC2 post.
Usually, during test and debug phase, you run the server in the PC just pressing F5 in B4J, then the server start running on your PC, and you have to configure your client with your PC ip (something like 192.168.1.x or similar).
Then, when everything is working, you get the .jar (java program) generated from B4J and upload it to your server (an internet one?), then run it. (and, of course, you need to change in your client the ip to connect)

Where will you run your server? in a VPS (virtual private server) with linux? In your home PC?
See this related posts


 

Timm

Member
Thank you for your great work. I want to use your code to start something in b4x. Hence I want to use this jrdc server connection, but the client your code not connecting to the server.
I ran the client ( above client code) code, was running, I input the logins: User/1234 but what are got are these:
problem connecting: Java.net.ConnectExeception: Failed to connect to /192.168.43.86.17178.
Please am sorry for my disturbance. what can I do to make it work?. When I ran the server, there was successful connection but can't get connection between client and server.
 

OliverA

Expert
Licensed User
Longtime User
Java.net.ConnectExeception: Failed to connect to /192.168.43.86.17178.
Did you accidentally use a period (.) instead of a colon ( : ) between the 86 and the 17178 when you created the rdcLink String?
B4X:
Private const rdcLink As String = "http://192.168.43.86.17178/rdc" ' Incorrect: the period (.) between 86 and 17178 needs to be a colon (:)
Private const rdcLink As String = "http://192.168.43.86:17178/rdc" ' Corrected rdcLink String
 

Timm

Member
Am just afraid to send something because of I may be disturbing you.
The real trouble is not

Private const rdcLink As String = "http://192.168.43.86.17178/rdc" ' Incorrect: the period (.) between 86 and 17178 needs to be a colon :))
Private const rdcLink As String = "http://192.168.43.86:17178/rdc" ' Corrected rdcLink String.

Previously, I sent a typo error to you by that period instead of colon. I actually typed it right on the jrdc2 code like
192.168.43.86:17178 but still couldn't connect and I have done this several time, to no avail. Not connecting
Please from your experience what are the factors causing no connection. Don't forget the server connection was successful but just to connect your code(client) with the server is where the trouble is. Thanks eagerly await solution.
 

josejad

Expert
Licensed User
Longtime User
Am just afraid to send something because of I may be disturbing you.
Don't be afraid, as you can see, we are here to help you, but please, make it more easy for us providing the more info, the better.

- Where are you hosting the mysql server? In the same PC where you're running B4J?
- What is the IP of the PC running B4J? (jrdc2 server)
- What is the IP of your client? (B4A? an Android phone?) As Aeric says, they must be on the same network (while testing)
- Can you post your "config.properties" file?

In the next picture, we're running the mysql server and the jRDC2 server on the same computer. Therefore, in the config.properties we use "localhost" (it means... the same computer in which you're running)
B4X:
JdbcUrl=jdbc:mysql://localhost:3306?characterEncoding=utf8&useSSL=false

Now, the B4A app needs to access your server PC, so you have tom set:

B4X:
'CHANGE THE IP TO MATCH YOUR B4J SERVER
    Private const rdcLink As String = "http://192.168.0.1:8090/rdc" '8090 it's the port we have set in config.properties, it can be another one

1704985986148.png
 
Last edited:

Timm

Member
Good afternoon. Attached below is my config file and response within wifi connectio
 

Attachments

  • Screenshot_20240118-163628.png
    Screenshot_20240118-163628.png
    44.3 KB · Views: 27

Timm

Member
#Lines starting with '#' are comments.
#Backslash character at the end of line means that the command continues in the next line.

#DATABASE CONFIGURATION
DriverClass=com.mysql.cj.jdbc.Driver
# JdbcUrl=jdbc:mysql://localhost/test?characterEncoding=utf8
#JdbcUrl=jdbc:mysql://localhost/db_store?characterEncoding=utf8
JdbcUrl=jdbc:mysql://192.168.43.86:3306/b4x?characterEncoding=utf8&useSSL=false&serverTimezone=CST6CDT
#JdbcUrl=jdbc:mysql://localhost:3306/b4x?characterEncoding=utf8&useSSL=false&serverTimezone=CST6CDT
User=root
Password=
#Java server port
ServerPort=17178
#ServerPort=8090

#example of MS SQL Server configuration:
#DriverClass=net.sourceforge.jtds.jdbc.Driver
#JdbcUrl=jdbc:jtds:sqlserver://<server address>/<database>

#example of postegres configuration:
#JdbcUrl=jdbc:postgresql://localhost/test
#DriverClass=org.postgresql.Driver

#SQL COMMANDS
#sql.create_table=CREATE TABLE IF NOT EXISTS animals (\
# id INTEGER PRIMARY KEY AUTO_INCREMENT,\
# name CHAR(30) NOT NULL,\
# image BLOB)
#sql.insert_animal=INSERT INTO animals VALUES (null, ?,?)
#sql.select_animal=SELECT name, image, id FROM animals WHERE id = ?;
#sql.create_table=CREATE TABLE article (col1 numeric(10,4) ,col2 text);
# sql.select=select * from article
#sql.select=select * from table_store
#sql.insert=INSERT INTO article VALUES(?, ?)

#SAMPLE
sql.Login = SELECT * FROM B4X.users WHERE `username` = ? AND `password` = md5(?)
sql.getEvents = SELECT * FROM B4X.events WHERE `month` = ? AND `id_user` = ?
sql.updateEvents = UPDATE B4X.events SET `month`=?,`event_type`=?,`description`=?, `value` = ? WHERE `id` = ?
sql.deleteEvents = DELETE FROM B4X.events WHERE `id` = ?
sql.addEvents = INSERT INTO B4X.events(`id_user`, `month`, `event_type`, `description`, `value`) VALUES (?, ?, ?, ?, ?)
 

josejad

Expert
Licensed User
Longtime User
Sorry, replying from my phone right now.
Check you don't have a firewall running on your server pc
 

Timm

Member
No I have configured my window to get the same pages both on desktop and phone, am not sure it is firewall issue. Please did you check my config file and the error. Thanks
 

Timm

Member
Good day. I have been on this jrdc for many days looking for it to work and eventually wow!!!!! I got it working thank you and thank you for your support.

But having little challenge username or password not correct. I used 1234 for the password, what do I use for user. Thanks
 

Timm

Member
Thanks once again, I got everything working. I have access to the b4x backend.
One thing I will plead, you help me with is; how do I use b4xtable to access the backend? could you adapt your code to use b4xtable. Thanks
 

josejad

Expert
Licensed User
Longtime User
Hi @Timm , glad you did it¡¡

I will try to update the example using B4XTable, but I have very few time right now for coding...
In the meantime, you can try this example:

 
Top