abdellahmehdi 0 Posted September 28, 2023 I want a site that allows you to connect to the database remotely online for Android Share this post Link to post
Die Holländer 45 Posted September 28, 2023 (edited) Is this a question? Normally a site is written for a web browser, so it doesn't matter if it is for Android, because all the browsers can use it. You can write a web server in Delphi using systems like DataSnap or MorMot. If you mean you want a Android App then you can use Delphi FireMonkey framework (FMX) to create an app for Android. In both cases put your database in a cloud, like Azure and let the website or App connect to it. Delphi FireDac works very nice with cloud databases. Delphi enterprise version with FireDac can easily connect to MS-SQL databases and then you will be also able to use the MS-Database Tools. The MS-SQL Management Studio has now all the Azure tools integrated to connect to the cloud database. Edited September 28, 2023 by Die Holländer 1 Share this post Link to post
abdellahmehdi 0 Posted September 28, 2023 (edited) 5 hours ago, Die Holländer said: Thank you, I want a server like firebase and how to connect to Delphi Edited September 28, 2023 by abdellahmehdi Share this post Link to post
Lars Fosdal 1792 Posted September 29, 2023 IMO, connecting directly to a DB from a mobile app is not a good approach. I would recommend that you put a REST API between the app and the DB. 1 Share this post Link to post