Questions tagged [jdbc-postgres]

jbdc-postgres is the JBDC (Java Database Connectivity) driver for the PostgreSQL database system.

JDBC is a core API of Java 1.1 and later. It provides a standard set of interfaces to SQL-compliant databases.

PostgreSQL is an open source object-relational database system.

Helpful links:

See also

48 questions
0
votes
0 answers

save as dialog in jsp

In my JSP page i had created a button(Download Result) and when i click the button it will display the save as dialog box. User will select a path to store the downloaded file. When the user click the download result button im getting all the…
0
votes
0 answers

Scala 2.9.3 postgres driver

I'm using Scala 2.9.3 because that's the latest version Spark Project requires. However I cannot find a database driver for Postgres that supports 2.9.3. All of them support up to 2.9.2 and then jump to 2.10.0. Does such a thing exist?
Saul
  • 911
  • 1
  • 8
  • 19
0
votes
0 answers

Call PostgreSQL function from Java JDBC driver

I call a procedure in the following way: CallableStatement delete_procedure = connection.prepareCall("{ call schema.delete( ? ) }"); delete_procedure.setInt(1, id); delete_procedure.execute(); delete_procedure.close(); connection.close(); When I…
Emanuele Mazzoni
  • 716
  • 3
  • 13
  • 24
1 2 3
4