Click here to Skip to main content
15,896,118 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi.
Here's what I have so far...

...a desktop with app inventor android emulator installed and working,
...an external server with writing and admin privilege,
...a web domain name,
...filezilla to connect to and write to the server.

I wish to set up a web service similar to the ubiquitous
"stock quote" app, where the android loads a stock symbol
to some server and is returned a current stock value from the server.

As you can see, I haven't gotten a database on the server yet,
which is where I think I need guidance.

Is it logical to assume that next step is to to install either
mySQL or sqLite to install a database on the server?

Is sql for reading, writing, editing, maintaining,
or whatever on the server database?

For now I am presuming it's for writing a database, and
so I was wondering if I should install sqLite or MySQL.
Posted

1 solution

Next step really depends on what you want to achieve; and you did not tell us much about it. If you need a database… well, you need it. You assumptions on what SQL is for are a bit naive, but you can just read about it:
http://en.wikipedia.org/wiki/SQL[^],
http://en.wikipedia.org/wiki/Relational_database_management_system[^],
http://en.wikipedia.org/wiki/Relational_model[^].

As to MySQL or SQLite, you are basically right, using them in Web development is very typical. Again, it all depends on what you want to achieve. You can review these lists:
http://en.wikipedia.org/wiki/List_of_relational_database_management_systems[^],
http://en.wikipedia.org/wiki/List_of_object_database_management_systems[^].

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900