Search the mailing list history for database-related stuff and you'll
find your answer.  The most important thing you need to remember is
that GWT compiles Java source into Javascript that runs in a web
browser.  There's no database to talk to via JDBC in the browser*.  If
you want to talk to a database with GWT, you need to do the database
stuff on the server and make your GWT app talk to the server somehow.
The easiest way to do that is to use GWT-RPC to talk to a Java
backend, but there's lots of other options.

Ian

* If you're willing to impose Google Gears on your users, then you can
use a database in the web browser, but it's a client-side DB, not a
server-side one--it's probably not what you're looking for.

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to