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

Best practice for abstract @MappedSuperclass @ManyToMany reference

I have the following entity classes (relavent parts only): @Entity @Inheritance(strategy = InheritanceType.SINGLE_TABLE) @DiscriminatorColumn(name = "SUBJECT_TYPE") public abstract class SubjectEty ...
0
votes
0answers
33 views

Maps values are maintaining some session

I have a typical problem on coding through java . Explanation : I fetch the database and get a list of 100 records or more, then i use to put this results in a list and added in a map . While ...
0
votes
0answers
5 views

Is JDBC Realm and form authentication with glassfish Single Login/Error page possible?

I've followed this tutorial http://blog.eisele.net/2013/01/jdbc-realm-glassfish312-primefaces342.html and got everything working. I would like to know if it's possible to have the login and error ...
0
votes
0answers
7 views

Error while loading data in netezza using external table logic

im getting following error while insertion of bulk data in netezza: ERROR: Transaction rolled back by client The query is INSERT INTO source SELECT * FROM EXTERNAL ...
0
votes
3answers
31 views

java.sql.SQLException: ORA-00933: SQL command not properly ended in selecty statement

I wrote query in servlet as.... "select Order_No from " + yard + "where Id= '" + idd + "'"; where yard is variable for table name and idd is variable for Id but i still get an error so please tell ...
0
votes
1answer
26 views

org.postgresql.util.PSQLException: Connection refused

I wanted to test execution of function of an indexing from other host because this function not absolutely correctly fulfilled in hadoop to the program. But I had problems with connection to a ...
-5
votes
1answer
47 views

JDBC Starting issue [closed]

I install MySQL and config it. I select 2323 for password, But now I don't know what was the username to use as a parameter in the connection. public class d2 { Connection con; String ...
2
votes
1answer
33 views

No suitable driver found for jdbc:postgresql://192.168.1.8:5432/NexentaSearch

I wrote following the java program import java.io.*; import java.util.*; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; import ...
0
votes
1answer
33 views

JDBC ResultSet Cusor Position

I have inherited some third party code using an old version of org.gjt.mm.mysql.Driver jdbc mysql driver class against a mysql database. The code appears to perform an executeQuery, storing the ...
1
vote
1answer
21 views

Hibernate named query re-parsed

We are using hibernate named query as follows : named_query : Select this_ from TableA this_ where this_.id in( select max(id) from TableA where COLA is null group by COLB ) and rownum=1 ...
0
votes
0answers
17 views

How to make user managed transaction in jBoss

I'm using JBossV5 as my application server. It provides the connection for mysql and I'm using jdbc in my application. I want to manually commit transaction. I know it is not possible to use ...
0
votes
0answers
20 views

How do I change the default mapping for SQLXML?

Quoting this reference: http://msdn.microsoft.com/en-us/library/dd571237.aspx [...]the xml data type can be mapped as a String, byte array, stream, CLOB, BLOB, or SQLXML object. String is the ...
0
votes
0answers
6 views

What is the difference between SQLServerConnectionPoolDataSource and SQLServerDataSource?

At my work, we have a number of glassfish-servers in different environments. Most of them connect to databases using JDBC connection pools. A couple of days ago I noticed that we are using two ...
0
votes
2answers
14 views

How to create or execute a Stored Procedure within another Stored Procedure in IBM DB2?

How to create a Dynamic Stored Procedure using a Stored Procedure in IBM DB2 9.7 for Windows ? Example below is my dynamic generated stored procedure: CREATE PROCEDURE DB2ADMIN.INSERT_A (inputVar1 ...
-1
votes
0answers
4 views

Using Oracle RAC with weblogic 9.2 [closed]

We need to use ORACLE 11g RAC with weblogic 9.2 and Oracle JDBC driver, 10.2.0.2.0.Need steps to use failover capability using multi datasource configuration in weblogic 9.2 using administration ...
0
votes
0answers
20 views

Eliminating column values Access database with jdbc

I am collecting data values of a trajectory path of a target in a sensor network. I am using JDBC and MS Access database. My goal is to eliminate duplicate values in a column next to each other. The ...
0
votes
1answer
15 views

Issue in setting password for existing in JDBC MS Access Workgroup (MDW) Java

Here is my Scenario I have MS Access DB (MDB file), and work group security file. I have credentials which have all the permit (Administrator user). This DB and MDW file is created on some other ...
0
votes
1answer
15 views

Database Connection does not release after idle time out in glassfish

i am using Glassfish 3 & mysql5.6.11. i have created JDBC connection pool in glassfish. Initial and Minimum Pool Size: - 8 Maximum Pool Size: -30 Pool Resize Quantity:- 10 Idle Timeout: - 60 ...
0
votes
1answer
29 views

Capture values from JDBC requests and use for next query

I'm trying to use Jmeter with about 10 queries per thread. All I want each thread to do is Insert into a player table using mysql auto increment. Then I want to use mysql SELECT last_insert_id(); ...
0
votes
0answers
22 views

insert into Teradata using R JDBC

I am using R JDBC and teradataR to connect R to teradata. I would like to write a table using the function dbWriteTable, but am receiving this error [Error 3932] [SQLState 25000] Only an ET or null ...
1
vote
1answer
42 views

java.sql.SQException: Io exception: Socket read timed out vs Closed Connection

I am trying to research this issue on the following two errors connecting to Oracle DBs: Closed Connection java.sql.SQException: Io exception: Socket read timed out My understanding: Closed ...
-2
votes
1answer
36 views

Spinning a new java thread to do db work for better UI responsiveness [closed]

I have an old application, it uses jdbc to do access to db. I have a page that handles edits to a record, and I was thinking of spinning a new thread when the save button is hit, so the user does not ...
0
votes
0answers
22 views

Connect to sql server from java with jdbc(windows authentication mode)

I need to connect to Sql Server 2008 from java using jdbc 4.0. I have a very simple code: Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver"); String connectionUrl = ...
-1
votes
0answers
37 views

Which language best suits a portable scientific application? [closed]

I am writing a couple of scientific applications for a company. They currently have all of their software running through vast and nearly impossible to maintain excel spreadsheets. All of their ...
-1
votes
2answers
35 views

Multiple Delete MSSQL delete queries in Java Program [closed]

I am writing a program where I am changing roles. The Change Role process involves deleting from two tables(to clear the current role/group), inserting into two tables(to set the role/group). I ...
0
votes
0answers
18 views

Elasticsearch river, convert longitude latitude to geo_point

I'm using the MySQL JPrante JDBC River plugin for Elasticsearch to index data from MySQL. In a record set I have the fields longitude (float), latitude (float), pin (POINT), how I can preset them to ...
0
votes
2answers
38 views

Java JDBC exec procedure with sql statement

I need to execute this SQL code: exec procedure(param, param, param, param) select * from bla_bla_table; commit; And get a ResultList from this query. I tried to do it like this: ...
2
votes
1answer
30 views

How to do XA transaction which includes JDBC and JMS transactions?

I need to do XA transaction in java SE with JDBC and JMS Queues. I have weblogic server to lookup for resources. kindly help with some sample code.
0
votes
0answers
9 views

how to configure connection to the database in clouds services

I have surfed the web for two days looking for a better way to configure my application that I am uploading to AppFog so that it successfully connects to the mysql database in the cloud. I have ...
0
votes
1answer
17 views

Postgresql Connection with Database in Java fail

I try to connect from my Android app to my postgresql server running on Windows 7. Both is running on my computer with a special IP. I try String url = ...
0
votes
0answers
29 views

deploying grails app on tomcat with sql connection

My grails run app work and connect to Ms SQL, the problem arise when deploying on tomcat, it fails. Receiving the following error: The web application registered the JDBC driver ...
0
votes
3answers
26 views

Connection from a Java program to a SQL Developer database

I would like to access to a Oracle database (SQL Developer) from a Java program. I never used JDBC before. Here is what i wrote: Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); String url = ...
0
votes
0answers
17 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 ...
0
votes
1answer
21 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
1answer
13 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).... ...
2
votes
2answers
32 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: ...
1
vote
1answer
38 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
1answer
24 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 ...
0
votes
0answers
22 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: ...
1
vote
2answers
40 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 ...
0
votes
0answers
26 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
27 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 ...
0
votes
0answers
22 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
4answers
37 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
vote
0answers
7 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
0answers
31 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
60 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
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
42 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 ...
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 ...

1 2 3 4 5 164