Alright, Christian I saw your work and got an idea how to go about it.
I used my MainEntryPoint to access the DAO directly but I'm getting
compilation about my imports.
import java.util.logging.Level;
import java.util.logging.Logger;
My code is this
public MainEntryPoint() {
try {
DatabaseServer db = new DatabaseServer();
itemList = db.returnProductList("electronics");
} catch (SQLException ex) {
Logger.getLogger(MainEntryPoint.class.getName()).log(Level.SEVERE, null,
ex);
}
}
--
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.