You can only do what you can do from JavaScript. This means that GWT can only open connections to the web server that's serving it.
You will need to use whatever technology that you web server is running in order to access MySQL. This means that you'd need to write some kind of data access script in PHP, ASP (C#), JSP, Perl, Ruby, ect, ect. A technique that I've used is to write queries in PHP, format the results into XML, and then parse the XML in GWT. Remember, GWT runs in the browser on an un-trusted computer. For security reasons; it's risky for the database to run any query that it gets from GWT, as this would open your database up to hackers. On Oct 21, 4:48 am, sumeetsahu <[EMAIL PROTECTED]> wrote: > Hi, > > I an new to GWT. I just want to know if we can use MySQL with GWT. > > I want to create a web page where I will be storing user info on > database and then query accordingly when ever required. > > Thanks > Sumeet Sahu --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/Google-Web-Toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
