On Tue, Oct 21, 2008 at 7:48 AM, sumeetsahu <[EMAIL PROTECTED]> wrote: > I an new to GWT. I just want to know if we can use MySQL with GWT.
Yes and no. GWT is client-side only so there's no way to use MySQL directly (or any database besides what's offered in Google Gears). However, you can use MySQL (or any database) on the server. In some sense, the easiest way to do that is to run a Java-based server-side and use GWT's RPC mechanism to do the communication, but GWT is server agnostic, so you can do whatever you want on the server and GWT will be just as happy. Ian --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
