0
votes
1answer
54 views

Insert BLOB using java for both DB2 and Oracle

I am currently validating an application developed on Oracle for DB2. Since we don't want to maintain two separate sources, I need some query to insert blob into a field, that works in both oracle and ...
2
votes
1answer
35 views

IBM DB2 JDBC over ODBC: SQLException thrown when running delete on empty table

I'm accessing IBM DB2 datatable available as ODBC datasource, using sun.jdbc.odbc.JdbcOdbcDriver driver. The problem that I've encountered is, when I'm executing DELETE FROM table using ...
1
vote
2answers
35 views

Using DB2 and jdbc on Mac OS X

i'm using Mac OS X Snow Leopard and IBM's DB2. I have it up and running, i already imported a schema.sql and can manipulate the database via SQL-Commands. For connecting to the db in java i need the ...
0
votes
0answers
36 views

Db2 connection error

im trying to connect my java to db2 database but im getting an error : "Execution failed due to a distribution protocol error that will affect the successful execution of subsequent DDM commands or ...
0
votes
2answers
78 views

Select record in batches Spring JDBCTemplate

I have a table which has around 5 million records. I want to read all the records from this table and do some processing on them. Now I want to query these records in batches say 1000 in one go, ...
0
votes
1answer
120 views

db2jcc4.jar Invalid parameter: Unknown column name

I previously asked the following question: DB2 query Unknown column name ERRORCODE=-4460, SQLSTATE=null We have since learned that changing from db2jcc4.jar (JCC) from db2jcc.jar (UNIVERSAL) solves ...
1
vote
2answers
46 views

Does a java application that uses JDBC 4 driver type requires db2 binding

Our java applications will access legacy mainframe db2 databases. I remember in my previous projects, C++ applications required db2 binding before deployment. In current projects, all mainframe ...
0
votes
1answer
55 views

DB2 JDBC Driver Truncates Decimal

DB2's JDBC driver appears to be truncating the precision of Numeric/Decimal fields. I have the following field defined in a SALES table: AMOUNT AS DECIMAL(16,16) I then do the following insert ...
0
votes
2answers
112 views

DB2 Error SQLCODE=-103, SQLSTATE=42604

I am trying to update a table, but it isn't working and giving this sql error. //Updating Buy Table Integer stkbid = Integer.parseInt(request.getParameter("stockBid")); System.out.println("stock buy ...
3
votes
1answer
87 views

Update exception using JDBC on DB2

The code that causes the exception is the following: for (int i = 0; i < updateParams.size(); i++) { s = con.prepareStatement(sSQL); params = (String[][]) updateParams.get(i); ...
0
votes
1answer
143 views

uploading image in db2 with a servlet

i am trying to upload image into my db2 database.i have copied the libraries required db2jcc.jar in web-inf/lib <form action="Upload" method="post" enctype="multipart/form-data"> ID : <input ...
1
vote
2answers
99 views

Can I make a Grails web app using db2 jdbc driver not commit?

My situation: I work with a lot of RPG programmers who have created files on the IBM-i in a way that does not create a journal. I've created a Grails app which uses a db2 jdbc driver to connect to a ...
0
votes
1answer
91 views

How to make a java interface that can open an image file and save it to database and resize it?

Say I have a code like this: import java.awt.*; import java.awt.event.*; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; import ...
1
vote
1answer
106 views

Ruby on rails - “cannot load Java class com.ibm.db2.jcc.DB2Driver”

I am using: Ubuntu 12.04 LTC JRuby 1.7.2 Rails 3.2.12 DB2 C express 10.1 My database.yml file looks like this: development: adapter: jdbc driver: com.ibm.db2.jcc.DB2Driver url: ...
1
vote
1answer
118 views

DB2 Adapter for Ruby on Rails vs ActiveRecord JDBC Adapter

Could anyone point to me the differences and the benefits between using "DB2 Adapter for Ruby on Rails" and "Active Record JDBC Adapter"? Generally, I am going to use the "jRUby on Rails" and "DB2 ...
0
votes
1answer
173 views

JDBC DB2 can not connect (SQLSTATE=08S01)

I want to connect both Oracle and DB2 databases for some reason using JDBC. In main class when I try to connect Oracle, Connection is successfull but DB2 connection is NOT successfull giving this ...
0
votes
1answer
132 views

How do SQL Parameters in XPages work when leveraging JDBC?

I'm using a jdbcRowSet data source and have a simple sqlQuery: SELECT * FROM MYSCHEMA.MYTABLE WHERE KEYCOLUMN=? I want to use this SQL with a parameter to indicate which rows I'd like to retrieve. ...
1
vote
2answers
227 views

DB2 Sequence value usingJava

I need to get the next value from a DB2 sequence. This is one approach I've tried stmt = con.createStatement(); rs = stmt.executeQuery("db2 VALUES NEXTVAL FOR <sequence_name>"); rs.close(); ...
1
vote
1answer
88 views

What is the correct syntax to change sql command terminator using a remote connection by jdbc driver

I use jdbc (com.ibm.db2.jcc.DB2Driver v. 1.4.2) to connect DB2 database. if I have to create a procedure like: CREATE PROCEDURE "Schema".makeUniqueCode(IN keyName VARCHAR(30),IN fieldName ...
1
vote
0answers
71 views

Infinite loop in DB2 JDBC driver

I'm using a Spring Batch, DB2 with JDBC v9.5 FP0 driver sometimes in any step where the process read from database I get the next error org.springframework.batch.core.step.AbstractStep execute ...
0
votes
1answer
100 views

SQLException after connection left idle

I am using DB2 with JDBC and the below code throws SQLException when I try to run for the first time after I left the connection idle for a few minutes. From the second time onward it would work ...
-1
votes
1answer
178 views

jdbc db2 connection

I'm using Tomcat 7, Eclipse juno, db2 v10.1 i have placed the db2jcc.jar and db2jcc4.cc in the WEB-INF/lib and tommcat library. I'm getting this error java.sql.SQLException: No suitable driver found ...
0
votes
2answers
160 views

implement type 4 jdbc driver in DB2

In my project I'm using few configurations in context.xml and servlet.xml, where I'm setting <ResourceLink global="jdbc/mydatasource" name="jdbc/mydatasource" ...
1
vote
1answer
457 views

ResultSet.next() returns false

In DB2 I execute a select statement and get the ResultSet as below PreparedStatement ps; ps = connection.prepareStatement("myQuery"); ps.setString(1, "data"); ps.execute(); ResultSet rs; rs = ...
0
votes
0answers
160 views

jdbc sqlexception caused by french accent characters

I have a DB2 database configured for french accent characters and via the DB2 command line tool both of the following SQL statements successfully return results containing french accent characters. ...
2
votes
1answer
166 views

DB2 backup via JDBC?

What I'm trying to do: find a way to backup a DB2 database via a JDBC command/query. Here's the command that I've tested with the DB2 command-line program: backup database dbName to C:\backup\db2 It ...
2
votes
2answers
261 views

create db2 schema using jdbc

What is the correct syntax or what are the correct steps for creating a schema in DB2 using JDBC? When running create schema test1 or create schema test1 authorization db2admin as db2admin, I ...
0
votes
0answers
78 views

Errors opening DB connection in SQLDeveloper

I'm using Oracle SQLDeveloper to connect to DB2 databases (AKA DEV connection). I'm able to connect and use worksheets to query the tables, but when I make the initial connection I get 3 error ...
1
vote
1answer
75 views

Trouble setting currentSchema for DB2 on Glassfish

I've been working to move an application from MySQL to DB2, and am currently running into trouble with currentSchema on deployment. The query: SELECT count(*) FROM SomeTable WHERE BooleanColumn=1 ...
0
votes
0answers
40 views

is there any way to verify the subject dn in server certificate using IBM DB2 JDBC driver

I want to do sth similar to what oracle provides for SSL connection in JDBC. If we set connection property to enable dn check like: props.setProperty("oracle.net.ssl_server_dn_match", "true"); and ...
0
votes
0answers
52 views

Placeholders for DB2 XML queries (jdbctemplate)

I wrote db2 xml query with structure like : Select ... XMLTABLE('$../../ [@id="5"]/../..' ) Where user='abc'; Now if I use placeholders in above query: Select ... XMLTABLE('$../../ ...
0
votes
1answer
167 views

IBM DB2 batch update behavior on duplicate key

I am currently writing a Java application and using Batch Insertion in autocommit mode. My question is if I insert 4 rows in a batch and a BatchUpdateException is thrown because the second row of the ...
0
votes
2answers
45 views

“Kludge” of a result set in JDBC [duplicate]

Possible Duplicate: rs.last() gives Invalid operation for forward only resultset : last So I'm trying to understand the result set cursor and I'm having an issue with where the cursor is ...
1
vote
1answer
290 views

How to set the socket timeout for a DB2 Universal JDBC Driver?

How to set the socket timeout for a DB2 (9.7) Universal JDBC Driver DataSource on WebSphere Application Server 6.1? I've tried adding the blockingReadConnectionTimeout property as this IBM Technote ...
0
votes
1answer
99 views

Setting property for named parameters in IBM DB2

I'm just getting into IBM DB2 and I have some fairly complex queries to create that will be based on user input in a Java webapp. The thing is, these queries will be put together with multiple ...
1
vote
1answer
568 views

DB2 JDBC Create clob error

I am using the db2jcc driver FIX Pack 6 of the 9 series. My code public void setParamsPreparedStatement(PreparedStatement s, String[][] params) throws Exception { ... Clob myClob = ...
0
votes
1answer
259 views

DB2 query error

From Java I am doing the following query on DB2: SELECT * FROM PRV_PRE_ACTIVATION WHERE TRANSACTION_ID = ? The field TRANSACTION_ID is a VARCHAR of length 32. I set the parameter in the ...
2
votes
1answer
278 views

Floating point precision: JDBC, double and DECIMAL, how to avoid loss?

I am copying some rows from a DB2 database usign a JDBC interface. My worry is this: Some columns are defined as DECIMAL 15. Internaly in DB2 these are stored as binary coded decimal. Copying these ...
0
votes
1answer
123 views

Type 4 Driver Issue - Multiple SQLs (Compound SQL)

I have a query with multiple calls in the same line(see code below) The Statement object is automatically created by JDBCTemplate. The JDBCTemplate is instantiated as new JDBCTemplate() and the ...
0
votes
1answer
448 views

jdbc statement fetch size in DB2

Im trying to set fetchSize on statment, while executing query so that can improve performance of some long running query. My DB2 jdbc driver version is 3.64 (DB2 version 9.2). But im not seeing any ...
0
votes
1answer
143 views

JDBC getColumnName getColumnLabel DB2

Is it possible to provide both column name and column label in JDBC ResultSetMetadata in DB2 for queries where a real table column is not involved? select substr('Hallo', 1) as greeting from ...
0
votes
0answers
67 views

Exception in Jdbcodbcfinalize()

Hi I have a java program which connect to db2 using jdbc:db2:databasename userid and password. However when I am running my program it is throwing following exception in finalizer. ...
1
vote
0answers
164 views

JRuby database.yml file configuration to use IBM DB2

I have installed: JRuby (1.7.0.preview2) Rails (3.2.8) IBM DB2 Express C (1.01) active-record-jdbc-adapter (1.2.2) How should I change the database.yml file in order to my rails application to ...
1
vote
1answer
230 views

Firing DB2/OS/400 Trigger from Java/JT400 SQL Statement

In my OS/400 v6.x system I created an AFTER INSERT trigger for a physical file (DB2 table) using the ADDPFTRG command which is fired correctly everytime I execute a WRITE command on an RPG IV program ...
1
vote
1answer
492 views

setting currentSchema using URL for DB2 in AS400

With DB2 JDBC type 4 driver (com.ibm.db2.jcc.DB2Driver), the URL to use in the configuration to connect to a DB2 database is: jdbc:db2://HOST:PORT/DATABASE:currentSchema=SCHEMA; this is working ...
0
votes
0answers
266 views

jdbc and z/os db2

Can someone explain why i am seeing this behaviour from java JDBC accessing z/os DB2 i have a z/os db2 v10 table with three columns, two columns comprise the uniue index, the third is a pureXML ...
1
vote
1answer
66 views

DB2 JDBC messages

I'm using DB2 in my Java application. Language I have set on my machine is Slovenian. The exceptions I get in my program are in Slovenian language. Is there a way to set the language in which I want ...
1
vote
1answer
135 views

Is JDBC 4 fully compliant with JDBC 3?

Programmer A, wrote an application using JDBC 3 (db2jcc.jar) and deployed on WebSphere App Server. Is it ok to change JDBC connection to use JDBC 4 (db2jcc4.jar), instead of JDBC 3 ? Is JDBC 4 fully ...
0
votes
2answers
136 views

How to Move large amount of data between Databases?

I need to compare data from two databases (both of them are DB2) which are on different servers with no existing connection between them. Because both of the db's are used in production I don't want ...
2
votes
2answers
273 views

Force java 7 to only use JDBC 3.0, not JDBC 4.0

Well, the title pretty much says it all. Is there a way to force Java 7 to use JDBC 3.0 and not JDBC 4.0? I expect the answer is no, but I am hoping...ok, it is more of a hail mary. Why, you ask, ...

1 2 3