Which database for this app.

I will write a “web application” which will be used by thousand member… They will fill a form, attach an image file and send . As you guess a lot of member can connect at the same time.
So,
1- Can “XOJO WEB Edition” handle this kind of operation?
2- Which database is suitable?
Thank you.
Manton

I had a website that handled a 6000 member organization… the site was not written in Xojo but in PHP (years ago), and the database was mySQL and worked quite well.

MySQL or PostgreSQL (my preference).

Can Xojo Web handle that kind of operation? You don’t provide enough information to answer that question. The simple answer is sure, it can handle it no problem. The more complex answer is: How many of those people will be logged in at one time? How many operations per minute will they be performing? What type of server hardware are you going to be running on? How intensive are you standard operations? What does the application do? How long will the general user be logged in? etc…

BTW, the above answer is true for ALL languages and web frameworks.

Thank you very much for the responses

Can we say that XOJO+Mysql (orPostgreSQL) performance is same or better than “PHP+Mysql” for similar project.

Thank you.