Re: List of Usable Java Packages?

2009-04-22 Thread Jonathan Kushner
I see now. Thanks for the help. On Tue, Apr 21, 2009 at 1:53 PM, Adam T adam.t...@gmail.com wrote: GWT only implements a subset of Java: http://code.google.com/p/google-web-toolkit-doc-1-5/wiki/RefJreEmulation You should also think of it as client side web code (after all it gets compiled

List of Usable Java Packages?

2009-04-21 Thread Jonathan Kushner
Hi there! I'm sure this is a pretty naive question, but is there a list somewhere of what java objects I can ( or cannot ) use? I tried creating a connection to an oracle instance in the onModuleLoad function, in hopes of using the resultset to populate basic datasets for gwt, but apparently i was

Re: List of Usable Java Packages?

2009-04-21 Thread Adam T
GWT only implements a subset of Java: http://code.google.com/p/google-web-toolkit-doc-1-5/wiki/RefJreEmulation You should also think of it as client side web code (after all it gets compiled to JavaScript) as such you wouldn't normally be able to connect to a database directly - you'd go