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
20 views

How do I change the system Location settings to use my language of choice?

How do I change the system Location settings to use my Location of choice? i have a following Exception in program: ORA-12705: Cannot access NLS data files or invalid environment specified How ...
0
votes
1answer
89 views

Converting date format of JXDatePicker to date type of mysql for storing it in database In java

I have used JXDatePicker in my java application and I want to store its value in a MySQL database. The database value to be stored is of date type. Here is my code: final JXDatePicker dodc = new ...
0
votes
1answer
27 views

How to access JDBC calls in Eclipse?

I m developing a plugin in Eclipse using Java , as plugin requirement I need to retrieve database table values in to my java class(Presently I m using SQL Server2008 database). I also added the ...
0
votes
2answers
30 views

Is it possible not to add JDBC to classpath?

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 ...
0
votes
1answer
26 views

interaction with database and messaging service. jms or rmi?

I'm writing a digital messaging service(a sort of guestbok but with "topics") where some users can only read message from subscribed "topics", and others can read and write message on topic they own. ...
-1
votes
1answer
34 views

Java app can't connect to local postgresql

I have a simple Java application that needs to connect to a PostgresSQL running on local host. The DB is up and running, and I can connect to it using the username and password using the psql command ...
0
votes
0answers
28 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
35 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
46 views

JDBC: Get table names involved in a SQL query

Is there any way to know the name of the tables involved in a SQL query executed via JDBC? For example: SELECT r.roleId FROM User u, UserRole r where r.userId = u.userId and u.name = "Jonh Smith" ...
0
votes
0answers
10 views

SQLite JDBC 3.0 driver

Is there any newer version than the Xerial JDBC driver for SQLite? Unfortunately some features that I really need are not yet implemented by this SQLite JDBC driver..
3
votes
6answers
85 views

infinite loop database check

I'm using JDBC, need to constantly check the database against changing values. What I have currently is an infinite loop running, inner loop iterating over a changing values, and each iteration ...
-1
votes
3answers
2k views

Error code 1064, SQL state 42000: You have an error in your SQL syntax;

I'm using latest version of MySQL ==> mysql-5.6.10-winx64.zip Created the database and every thing is ok 'I think' when I try to execute this simple command; "select * from family" I got this ...
1
vote
2answers
20 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
3answers
26 views

How to use ORMLite with the native Android driver?

I want use ORM with ORMLite. But, the example show how use JDBC driver, I want use SQLite native Android driver, how I can do with this ? It's possible ? Can you show me just an example how get ...
0
votes
0answers
41 views

Use JDBI to get Postgres Array Data

I have a java program using JDBI (a JDBC wrapper) to access a PostgreSQL database. One of the columns is of the array data type (mycolumn integer[]). What the heck to I use in my mapper class? I ...
0
votes
4answers
37 views

resultSet.getObject(1); where does the cast occur?

I would like to know when using the ResultSet instance method: getObject(int columnNumber); how come that it gets automatically cast to the column type? It's something implicitly done by the ResultSet ...
1
vote
2answers
27 views

JDBC Connection Pool - Simple Setup and Library

This question has formed following a previous question (Implement Iterator design pattern using JDBC). I understand the basic concepts of connection pooling but no further than that. My application ...
2
votes
4answers
3k views

I am getting the memory leak exception in tomcat console

Aug 29, 2012 12:47:44 PM org.apache.coyote.http11.Http11Protocol pause INFO: Pausing Coyote HTTP/1.1 on http-443 Aug 29, 2012 12:47:44 PM org.apache.coyote.http11.Http11Protocol pause INFO: Pausing ...
0
votes
0answers
16 views

Special Characters (UTF8 character) in Oracle 10g Clob Column returning as ? or blank in Java

We have a a table which stores XMLs as CLOB (Oracle 10g). These XMLs typically contains some special characters e.g `FDEAÂ’s` When I query this record using SQLDeveloper and save the XML in ...
0
votes
1answer
32 views

ClassCastException when running on Oracle Database JVM

I have the following code: OracleDataSource ods = new OracleDataSource(); ods.setURL(thinConnectionString); OracleConnection conn = (OracleConnection) ods.getConnection(); ArrayDescriptor d = ...
2
votes
2answers
15 views

Very simple Spring transactions of JDBC not roll back (even log said yes)

I'm new to Spring transactions. I use Spring 3.2.2 and MySQL 5.5.20(InnoDB). I can see in the log file that it did roll back, but in the database, the record still being updated to 9. What did I miss? ...
0
votes
0answers
33 views

alter table waiting for select query to get executed

I have a use case where i dynamically add new columns to db.The alter table works fine when no select queries are running on the db table.But if alter query is running at the same time when some heavy ...
0
votes
1answer
12 views

Pentaho Data Integration: Error connecting to database: using class org.gjt.mm.mysql.Driver

I get this error but I have my mysql-connector-java-5.1.23-bin.jar inside Pentaho\data-integration\libext\JDBC. It seems the connector is not loaded because it's using the default one. I have tried ...
1
vote
1answer
24 views

Checking for usename in mysql …If it exist then inserting into other table Otherwise the base table

Well i have the following table Table1 in MySQL workbench-- user_id int not null,autoincrement movie _id int not null movie_name varchar user_name ...
0
votes
1answer
21 views

how to list all elements of class when class have foreign key of another class in jdbc servlet jsp mysql?

How can i to list a class elements in java when class have another class field? It looks like this: public class Grad { private int grad_id; private **Drzava drzava**; private String naziv; private ...
5
votes
2answers
1k views

APPARENT DEADLOCK Creating emergency threads for unassigned pending tasks

I am using mysql with mybatis and I am greeting this error on our live server com.mchange.v2.async.ThreadPoolAsynchronousRunner$DeadlockDetector@6538f8f2 -- APPARENT DEADLOCK!!! Creating emergency ...
0
votes
0answers
19 views

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

One confused puppy here. 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 ...
1
vote
1answer
37 views

Retrieve a Regex Pattern from a MySQL table

I have a table in MySQL containing regex pattern such as : FILE\\\\d{1,4}. But while trying to retrieve the pattern value with a Java code, it seems like the value is not in the good format. How can I ...
1
vote
0answers
68 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 and it's ...
-3
votes
0answers
22 views

JDBC Connection error To MySQL Database inside index.jsp script [closed]

I am trying to test a connection and database post using the script below from a index.jsp file, but it is not writing into the database. I am a Delphi / Pascal developer but do not know anything ...
17
votes
8answers
31k views

com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure

I'm working on getting my database to talk to my Java programs. What do I need to get started? Having already read through (and been thoroughly confused, something that does not happen often) with ...
6
votes
3answers
5k views

Variable column names using prepared statements

I was wondering if there was anyway to specify returned column names using prepared statements. I am using MySQL and Java. When I try it: String columnNames="d,e,f"; //Actually from the user... ...
0
votes
1answer
37 views

In this program, I have to set already existing value for ssn in where clause (ie: in setString (3, ) )

public void UpdateCustomer(Customer customer) throws CustomerHomeException, ClassNotFoundException{ try { Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); String url = ...
0
votes
0answers
28 views

Row in MySQL Database causing error in Vaadin

I've started to test using Vaadin for consideration as a replacement technology for an existing system. As a test, I've tried connecting to the existing database, and for some of the tables it works ...
0
votes
1answer
190 views

Java 1.6 and Oracle JDBC 14 setQueryTimeout not working

We run Java 1.6 and use the latest ojdbc14.jar. We connect to a remote Oracle db. We want to setQueryTimeout as the query must not take longer than 2 minutes to complete. I have done this: ...
5
votes
2answers
712 views

MySQL Connector/J Replacement

I was wondering if there are any alternatives to using the MySQL Connector/J JDBC driver? Connector/J is licensed under a GPL license which will not work in my case. I like MySQL, but I also can not ...
0
votes
2answers
69 views

Check if a table exists in a database [duplicate]

I am making a program where I would read data from excel file and store them in tables. Each table would have the name of the file and the data that are in the file. At the beggining of the program I ...
0
votes
1answer
13 views

Logback DBAppender DDL?

I am interested in using slf4j-logback in my project, and would like to use the DBAppender. Apparently, unless you implement your own DBNameResolver, you must abide by the specific table ...
0
votes
0answers
12 views

Can't create own cube on Saiku

I would like to create cube with connection to MS SQL Server 2012. I downloaded Saiku with Foodmart DB which runs successfully. Currently, I have edited schema file to be my own data. Also, I changed ...
2
votes
4answers
2k views

What is the reason for OutOfMemoryError: Java heap space in the following case?

The following code sample is inside a for loop that runs about 2 million times. List<String> parameters = new LinkedList<String>(); stmt2 = null; rs2= null; //This is line 472 stmt2 = ...
0
votes
2answers
19 views

Does a database systems latest driver support all previous versions?

I trying to develop a program, which as a part of it functionality, needs to connect to a selected database(either Oracle, SQL Server, MySQL etc). I am using java for the program. Is it okay for me to ...
0
votes
1answer
30 views

How to work with subselects in combination with PreparedStatements?

For example I have the following SQL Code: SELECT * FROM customer c WHERE 2 = (SELECT count(*) FROM account a WHERE a.cust_id = c.cust_id); How can I transform that SQL ...
0
votes
1answer
73 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, ...
0
votes
2answers
258 views

Does MySQL included with MAMP not include a config file?

I can't seem to find the my.cnf or other config file for the MySQL that comes with MAMP. Does it not include one? I want to use NetBeans for Java/MySQL Development and many articles on the web ...
0
votes
2answers
35 views

executeUpdate(String, int) method in Statement always returns 1

Can anybody tell me why the below method (executeUpdate) is always returning 1 even if I have specified to return the generated key in it? I want to get the generated key in generatedKey variable. It ...
0
votes
1answer
29 views

I can't delete from my SQL database using JTable

So... I want to delete a row from by database using a JTable, but I don't know why it doesn't get deleted, maybe the sintaxis of the DELETE isntruction is wrong... borrar.addActionListener(new ...
6
votes
4answers
6k views

How to get all table names from a database?

I'd like to retrieve all table names from a database schema, and, if possible, get all table starting with a specified prefix. I tried using JDBC's connection.getMetaData().getTables() but it didn't ...
8
votes
4answers
3k views

Is rollback needed if java.sql.Connection#commit() throws exception?

According to JAVA documentation, Connection#commit() can throw SQLException. My question is whether or not a rollback should still be issued in this scenario. For example: Connection con = null; try ...
1
vote
1answer
16 views

Workaround for JDBC Limitation on Placeholders Fails for Update Statements

I am implementing a pattern to get around a JDBC limitation. For prepared statements, JDBC limits the number of placeholders to 2100. To get around this, I am using an xml string containing 2100+ ...
-1
votes
1answer
30 views

what can be used as an iterator while using prepared statement in jdbc;here I want to check if the customer exists

public void addCustomer(Customer customer) throws CustomerHomeException, ClassNotFoundException { try { Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); String url = ...

1 2 3 4 5 162