JDBC (Java DataBase Connectivity) is the base API which enables interacting with SQL database servers by executing SQL statements using the Java programming language.

learn more… | top users | synonyms (1)

0
votes
0answers
13 views

java connection pooling error in netbeans in for sql server 2008 with jtds Driver

I Just Configured connection Pooling in Context.xml and i'm using netbeans IDE and i'm using jtds driver for sql server and i'm getting Exception like this? Cannot create JDBC driver of class ...
1
vote
1answer
14 views

Querying Large Datasets in Cassandra

I am by experience a RDBMS programmer. I am working on a scientific research problem involving genomic data. I was assigned to explore Cassandra since we needed a Big Data, scalable and cheap (free) ...
0
votes
2answers
78 views

How to insert Date into MySQL Database table in Java?

How do I insert date, without time, to MySQL database table? I tried these codes but I get the following exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in ...
0
votes
1answer
5k views

How to log JDBC connection info on org.springframework.jdbc.CannotGetJdbcConnectionException

I'm working on an application which uses the Spring framework in combination with Ibatis and a C3P0 Connection pool. The system connects to about 12 seperate databases. When one of the databases is ...
0
votes
1answer
18 views

Code throws SEVERE: No value specified for parameter 1 excetion

I am trying to find a list of items from my database but it throws an exception. My code and error are as following , all field types are correct. Code System.out.println("2"); try { ...
0
votes
0answers
8 views

How to get postgresql to work with sequel and jruby

require 'sequel' require 'jdbc/postgres' DB = Sequel.connect("jdbc:postgresql://user:pass@domain/database") DB.tables Returns: ....(bla bla bla stack trace bla bla bla).... ...
1
vote
2answers
16 views

Postgres SQL in clause and setArray()

I am using Java 1.7 and JDBC 4 and Postgres. I am trying to use a PreparedStatement with an array to fill a SQL in clause. But, the SQL generated seems to have "{" and "}" in it. Here is the code: ...
0
votes
1answer
16 views

Creating the “Invalid or Stale Connection found in the Connection Cache” local Oracle DB

I would like to know how to tweak my local Oracle DB settings to get this error through my web application. Any input would be greatly appreciated. Thanks. I altered the user's profile: ALTER PROFILE ...
0
votes
0answers
20 views

Quartz / Spring / Postgres: Connection is always closed

I'm trying to get a Spring 1.3.1 application working with Quartz 2.1.7. This will be running in a clustered configuration with a postgresql jobstore. I've been receiving this exception on startup: ...
0
votes
2answers
10k views

JAVA program to display values from the oracle database

Simple java program to retrieve values from the Oracle database within specified dates. Already I have written the JPS and servlet page. But still the pages are not getting connected. Please help.
1
vote
2answers
34 views

How to create a database in Oracle using JDBC?

I want to create a new database on an Oracle server via JDBC. I cannot seem to connect to the database without providing an SID: using a URL like jdbc:oracle:thin:@//[IP]:1521 results in an error of ...
-1
votes
0answers
17 views

how to use multiple queries in java using jdbc

how to use multiple queries in java using jdbc 1.how to use this below two queries in the method without deleting the already existing query in method query 1: insert into ...
0
votes
1answer
52 views

How to aviod duplicate entries into the DB tables using java JDBC

I am inserting rows into the columns of oracle table that I created manually on the DB with the number of column names and order that in the XML file. The XML is considered as a config file,so the ...
0
votes
0answers
20 views

Squirrel client can't connect to MySQL instance: bad driver?

I am using Squirrel to connect to a MySQL instance being hosted on CloudBees. I downloaded what I believe is the correct JDBC driver, and installed it to Squirrel's lib directory at: ...
0
votes
1answer
55 views

Retrieving serial id from batch inserted rows in postgresql

Here is the code that works: Connection c = ds.getConnection(); c.setAutoCommit(false); PreparedStatement stmt = c.prepareStatement("INSERT INTO items (name, description) ...
0
votes
0answers
18 views

Jdbc statement error

I have problem with such simple thing, sql statement, I have table in database that contains link in varchar(255), people are logged to site by links, so I'm taking logged person name (Getting ...
-2
votes
1answer
20 views

Quick way to connect to a remote MySql Database in Java [closed]

I wanted to connect to a database from within a Java-based framework. This essentially involves writing code to connect to a database. However, I cannot modify any build.xml file or so such as in ...
2
votes
0answers
86 views

Implement Iterator design pattern using JDBC

I'm tackling the following question: The iterator design pattern is one that has strong encapsulation. As an example; a library wants a book management system. A class for the books storing their ...
0
votes
4answers
31 views

setAutocommit(true) further explanations

I have come across this oracle java tutorial. As a beginner in the topic I cannot grasp why it's needed to set con.setAutocommit(true); at the end of the transaction. Here is the oracle explanation: ...
-1
votes
0answers
29 views

How to get data from mysql database when remote acces is denied [closed]

I need to get data from a MySQL database located on a server where I'm hosting a site. I retrieved a username and a password for the database from the company that hosts my website. I do not have the ...
2
votes
1answer
38 views

Java JDBC exec procedure

I need to execute this SQL code: exec ais_disp.p_lk.p_add_client (v_sis_id => 1640, v_proc_id => 1, v_time_start => to_date('01032013 00:00','ddmmyyyy hh24:mi'), v_time_end => ...
1
vote
0answers
6 views

Using jTDS to connect to SQL Server 2012 availability group listener

I am working on a legacy project that uses jTDS to connect to SQL server. The client wants us to support SQL Server 2012 AlwaysOn. one key requirement is the ability of our application to ...
-1
votes
2answers
28 views

''SQLException Column count doesn't match value count at row 1'' in large files and no in small files

I am making a program where I would read data from excel files and store them in tables. In my files some cells could be blank and I would store them in my table as null values. In my program I am ...
1
vote
5answers
40 views

JDBC - How do I 'getString' from a ResultSet if the column's name is a keyword?

Whenever I try to retrieve the value for a column named "Comment" in an Access db (.mdb), It gives me the following error. Offence: copying data ERROR - Offence TABLE ...
0
votes
3answers
51 views

Is it possible not to add JDBC to classpath? [closed]

Is it possible not to add the JDBC to CLASSPATH? just use the source code. I am creating a program that connects to the database but I don't want my users asking them to add the JDBC to there ...
1
vote
2answers
40 views

PrepareStatement JDBC in java

Are PrepareStatement only usable with values? Example: Could I use something like con.prepareStatement(SELECT ? FROM ? WHERE name =?) Or ? is used only for values, thus within the clause WHEWRE ...
0
votes
2answers
90 views

java.sql.SQLException: Numeric Overflow while using IN operator

I implemented a Java application which queries a database based on given set of ids using the query: select * from STUDENT where ID in (?) The set of ids will be used to replace ?. However, ...
2
votes
3answers
452 views

NameError: cannot load Java class com.mysql.jdbc.Driver

I'm using JRuby 1.7.2, along with DataMapper, and I'm getting an error I can't find an answer to. I'm just testing out DataMapper along with MySQL 5.5 to see if it will run fine when I build around ...
1
vote
1answer
584 views

How can I resolve “Stored procedure 'MySP1' may be run only in unchained transaction mode” error?

I am writing a Java app which needs to do some complicated SQL and roll back all of it if any of it fails: Open Sybase connection using net.sourceforge.jtds.jdbc.Driver Call setAutoCommit(false) Do ...
0
votes
1answer
20 views

how to use multiple queries in java using jdbc

how to use multiple queries in java using jdbc 1.how to use this below query in the method without deleting the already existing query in method Insert into ...
2
votes
2answers
33 views

sharing a JDBC Connection object between other objects

I have created a Database class which uses a static connection object in order to be used in common between instances of itself. my question is that is there any problem with this approach or not? ...
0
votes
0answers
14 views

Is it possible to open SQLite manager with inside the Java Swing window?

I'm using JDBC and SQLite db file for my Java code and I'm using Firefox add on to manage the DB. Is it any possible to use any manager with in the Swing window?
-3
votes
0answers
17 views

can't make a connection between eclipse and sql server 2008 r2 [closed]

package amino.system; import java.sql.*; public class jdbctest { public static void main(String[] args) { // TODO Auto-generated method stub Connection conn =null; try{ ...
0
votes
0answers
12 views

opensource jdbc driver for foxpro

Does anyone know of a free/opensource JDBC driver for fox pro dbf? because the jdbc-odbc bridge is not working for me ! check my previous question click here
1
vote
2answers
9k views

Where do I download JDBC drivers for DB2 that are compatible with JDK 1.5?

Where do I download JDBC drivers for DB2 that are compatible with JDK 1.5? They seem to be very elusive and I hit many dead-ends at IBM's website. I managed to find versions of the driver bundled with ...
0
votes
1answer
25 views

With maven, do I still need to configure jdb driver and datasources?

I want to write an Java EE 6 app, on JBoss 7.1, with JPA (Hibernate as JPA provider) and SqlServer. The build tool is, for better or worse, Maven 3. What does Maven arrange/set up for me in terms ...
0
votes
0answers
33 views

Using Groovy's ${…} with SQL

I have a question about using a string in a JDBC SQL query. Here are two examples and I expect both to work, but they don't. Working version ... tabl = "Action" query = "SHOW FULL COLUMNS ...
50
votes
9answers
35k views

handling DATETIME values 0000-00-00 00:00:00 in JDBC

I get an exception (see below) if I try to do resultset.getString("add_date"); for a JDBC connection to a MySQL database containing a DATETIME value of 0000-00-00 00:00:00 (the quasi-null value ...
0
votes
1answer
39 views

How to guess or determine a SQL identity field and avoid duplicate

I am trying to avoid duplicate updates to data, so I would like to know if there is a way to update only one row field without updating a piece of data in the subsequent row. So here it is the ...
1
vote
2answers
437 views

JDBC install and configuration with Java SE 6 and Tomcat 6 - help please

I am new to Tomcat and Java SE 6 and need to know what I need to do to install, configure and use the Microsoft JDBC driver. I have download the JDBC driver and extracted it to a directory on a ...
-2
votes
0answers
21 views

@Transactional annotation - no transaction

I spent a lot of time on resolving problem with transactions started by @Transactional annotation but I can't find way how to start and commit transaction. Mabye I don't understande Spring ...
0
votes
1answer
43 views

JDBC connection does not run with .jar file, but with eclipse project

I'm really looking at a mystery here. I created a Java program in Eclipse and established a JDBC connection. The code is the following: import java.sql.*; public class Login { public static ...
1
vote
2answers
31 views

DatabaseMetaData interface does not work?

I am trying the method of this interface explained here in this tutorial: Here I go: DatabaseMetaData dm = con.getMetaData(); ...
1
vote
3answers
69 views

How to get array base type in postgres via jdbc

How to get base type / dimension of an array column in Postgres by Java? I have a tables that contain arrays like int[][] and text[]. When I traverse the metadata from JDBC I can only get type as ...
2
votes
1answer
39 views

Statement.execute(sql) vs executeUpdate(sql) and executeQuery(sql)

I have a question related to this method: st.execute(sql); where st obviously is a Statement object. Directly from this oracle java tutorial: execute: Returns true if the first object that the ...
3
votes
1answer
33 views

how to detect connection leak in jdbc using weblogic?

Is there any way to detect connection leaks in my project without going for load testing. I am using weblogic server , is there any way to detect using weblogic?
0
votes
0answers
11 views

Retrieving CLOB objects from JDBC ResultSet taking lot time

We have standalone application connecting using JDBC to Oracle Datatbase. I am retrieving values for past one month, where resultset may vary from 25,000 to 100,000 records per month. When iterating ...
0
votes
1answer
30 views

About resultset type JDBC

In this oracle java tutorial, it says: TYPE_FORWARD_ONLY: The result set cannot be scrolled; its cursor moves forward only, from before the first row to after the last row. The rows contained ...
0
votes
0answers
31 views

redirecting based on information you set in database

I have an java web application that sets a title to users as either manager employee or client and I want all three login pages to be different for each title. my login system is very simple and I was ...
1
vote
5answers
4k views

how to find number of records in ResultSet

I am getting ResultSet after an Oracle query. when I iterating through the ResultSet its going in infinite loop. ResultSet rs = (ResultSet) // getting from statement while (rs.next()) { // // } ...

1 2 3 4 5 163