Android Question How can I use a Sybase 16/17 SQL-Database with B4A

sirolav

New Member
Hello.
it is possible to connect an application in b4a with sqlanywhere 16/17 database.
If possible, I would like some examples. I can't find examples and help.
Thanks in advance
 

roerGarcia

Active Member
Licensed User
Longtime User
You can try jrdc, needs the SQL Anywhere JDBC
JRDC - Search in the forum about it.


from the forum:
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 made of two components:

- B4J server. The server receives the requests from the clients, issues 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 is compatible with B4A, B4J and B4i is responsible for sending the requests and handling the responses.

jRDC2 can work with any database that provides a JDBC driver. All popular databases are supported.
It is much more powerful than the PHP based solution and it has excellent performance.
It is also safer as the SQL commands are set in the server side.

 
Last edited:
Upvote 0

sirolav

New Member
Hello.
it is possible to connect an application in b4a with sqlanywhere 16/17 database.
If possible, I would like some examples. I can't find examples and help.
Thanks in advance. Can you send example of jdbc string connection with sqlanywhere with connect with pc odbc name ?
 
Upvote 0

Bladimir Silva Toro

Active Member
Licensed User
Longtime User
Upvote 0
Top