• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Android Application with SQLAlchemy Web Server

Rohit19j91

Lurker
Hi ,

I am trying to build an android application and i was wondering if on the database server side i could use sqlalchemy for database communication with the android application using sqllite or not ?

Any thoughts would be very well appreciated !

Regards,
Rohit
 
Please clarify, you have a server with database and SQLAlchemy that used for connection to that database.
Android application run on the device on the client side.
SQLite is used for the local database on the android device.
Database on android device on client side does not have direct connections to the server database. These are different domains.
Your application can send request to server, get response and store data to local database.
 
Back
Top Bottom