I am trying to manage to work a simply xhtml page with Java Server Faces 2.0 that shows entries from a database JDBC-MySQL
Most recent problem is \"Third Error\" listed below. I am working on an application in java that needs to connect to a database. Below is the code that i am using to attempt to connect to the databas
I have a database that is connected through an unreliable network connection to an application server, so occasionally the connections break down. Each time this happens, all database connections in t
I\'m reading Java Data Access—JDBC, JNDI, and JAXP about Connection, PooledConnection interfaces. As I understand Connection returned by PooledConnection represents a \"logical\" connection. PooledCo
How can I exec开发者_运维百科ute SQL in a Gradle task? configurations { compile } repositories { mavenCentral()
I have some data coming from a machine in the following format: A (some value) B (some value) C (some value) and so on.
Searched through the entire site but nothing helped at all so I decided to open up a new topic. Here\'s my problem: I\'m developing a simple GUI in java which uses JDBC behind the back. Here are some
Now im filling my classes like this: Part part = new Part(); ResultSet rs = statement.executeQuery(); part.setBrand(rs.getString(\"P_BRAND\"));
I want to call getTables method of DatabaseMetaData and get all tables which names are not starting with \"KB\".
I have written code which should call MSSQL 2005 procedure from my servlet. The problem is the procedure is to SELECT data from table so I want to get ResultSet but the result set is never returns :(