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
7 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
26 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
32 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
21 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
35 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
31 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
15 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
35 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: ...
0
votes
0answers
15 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
0answers
15 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
25 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
16 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).... ...
1
vote
2answers
27 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
22 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
23 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
21 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
38 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
24 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
24 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
34 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
30 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
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 ...
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
80 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 ...
-1
votes
0answers
18 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
22 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 ...
0
votes
0answers
15 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?
0
votes
0answers
14 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
0
votes
0answers
36 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 ...
-3
votes
0answers
23 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
1answer
40 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 ...
-2
votes
0answers
22 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
45 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
32 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(); ...
0
votes
0answers
13 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 ...
2
votes
1answer
40 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 ...
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 ...
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?
-1
votes
0answers
33 views

redirecting based on information you set in database [closed]

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 ...
0
votes
4answers
42 views

querying a database with an arraylist

I want to query a database using an arraylist value. It should return a value from the database the same as one of my arraylist element if it exists. I am trying something like this, but it is not ...
0
votes
0answers
24 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
37 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 ...

1 2 3 4 5 163