Database without coding ?! | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Database without coding ?!

Is it possible to make a database for a mobile app without coding. If Yes , how?

15th Sep 2019, 6:54 AM
Bono
Bono - avatar
7 Answers
+ 5
Bono, there are different possible solutions for that. You could use a simple text file if ony a few informations has to be kept. Other way is using cvs (more record / dataset related text file - there is a module in python for this), or using json format ( also like cvs and easy to hande if you have stored data in a dictionary - also with a module in python). For more complex information to store or import export xml can be used, alos with a module in python. But this can be much more complexe than the other possibilities. And last but not least, a small implementation of sql (sqlite) could be used, but if i understand you right, this looks a bit "over-engineered" for your purpose. It was also mentioned here to use access - that is a Microsoft product but only running on Windows. It's a quiet good product, and i did a lot of programming with it, but it can not be something of choice here. But whatever you select, it needs a bit of coding and knowledge.
15th Sep 2019, 12:59 PM
Lothar
Lothar - avatar
+ 4
Using access
15th Sep 2019, 7:26 AM
Muaz Ahmad
Muaz Ahmad - avatar
+ 3
Bono, what do you mean by asking "without coding"? Do you talk about creating and setup a database file, or do you mean using the database file by user?
15th Sep 2019, 10:13 AM
Lothar
Lothar - avatar
+ 2
Lothar i want to make a simple database to store some informations in it , so the app could use it when it needs it, and i want to store some simple informations about the user
15th Sep 2019, 10:37 AM
Bono
Bono - avatar
+ 2
Muaz Ahmad using access? Really, how?
15th Sep 2019, 11:25 AM
Dejan Dozet
Dejan Dozet - avatar
+ 2
If you want it simple save it as a xml file. I am sure that your language of choice supports XML manipulation too.
15th Sep 2019, 5:45 PM
Dejan Dozet
Dejan Dozet - avatar
+ 1
you can use firebase-> noSQL
15th Sep 2019, 5:04 PM
Mayank Mani Tripathi
Mayank Mani Tripathi - avatar