Is there any specific and supporting database server for Ext Js?
Otherwise, what is the best database used in ExtJS applications normally? My application looks like this.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You need a server side technology that can retrieve data from your existing database. The database itself is not important since you will be writing a server side application layer that will abstract that interaction.
My recommendation on the server side application implementation is any framework that can easily turn your relational (or not) data into JSON format for consumption by your ExtJS application.
I use Grails and am very happy with it, especially how easy it is to work with JSON and feed it to ExtJS.