Re: Working with Databases

2010-12-05 Thread newto...@web.de
Thank you for your reply. Now i am connected with my database. I used the mysql conn example and replaced everything about mysql with postgresql. If i start a querry my: int rsSize = getResultSetSize(result) = -1; Does the Connection connection = getConn(); shows anywhere if the connection is

Re: Working with Databases

2010-12-05 Thread Noor
Don't interact with the database directly from the database if you are using java, try using hibernate which is much better!! -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Working with Databases

2010-12-05 Thread newto...@web.de
I would be happy if you could explain more details. On Dec 5, 5:59 pm, Noor baken...@gmail.com wrote: Don't interact with the database directly from the database if you are using java, try using hibernate which is much better!! -- You received this message because you are subscribed to the

Working with Databases

2010-12-04 Thread newto...@web.de
Hello, i am very new to GWT and just finished the tutorial. Now i want to connect and query my postgresql 9 database. what do i need? What is a tomcat server? Can i work without a tomcat server? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Working with Databases

2010-12-04 Thread Gaurav Vaish
Hi, You need to look at the topic of JDBC - Java Database Connectivity - to learn how to connect to database. Note additionally that GWT will not allow you to connect to the database server directly - after all GWT is only a code generator for JavaScript and JavaScript has not API to connect to