Spring JDBC is a part of Data access layer provided by Spring. The Spring Framework takes care of all the low-level details that can make JDBC such a tedious API to develop with such as database connections, creating prepare statements, process exceptions etc.,
0
votes
0answers
27 views
How to retrieve non key columns on inserting the record into the table?
I know I can use the following query to get the primary key of the record inserted into the table.
namedParameterJdbcTemplate.update("INSERT INTO TABLE(ID, col1, col2)"
+ ...
0
votes
0answers
14 views
Spring Tool Suite - JDBC - PL/SQL configuration and integration
I need to implement a simple prototype that interfaces my application with an Oracle schema and in particular with PL/SQL packages (can't use any SQL code from Java).
I've created a new project from ...
0
votes
0answers
16 views
Spring JDBCTemplate and inserting null value in a float column in sq lserver
I have a table which has a float, integer and varchar column
// build the sql to update
String sql = this.buildUpdate(dataStore);
// convert parameters into a nice Spring structure
...
1
vote
1answer
27 views
JDBC - Reuse Bind Variable in Query
I have a SQL stmnt like the one below, and it it complaining because I am not passing in two bind variables.
Is there a way I can reuse the one bind variable, since they're the same?
String sqlText ...
0
votes
1answer
46 views
Extract and Insert concurrently into database using JdbcTemplate and BlockingQueue
I am extracting thousands of rows from one database table and inserting into another database table. I don't want to load all the records into memory and then insert into the other database.
Because ...
0
votes
1answer
35 views
JDBC Template - One-To-Many
I have a class that looks like this. I need to populate it from two database tables, which are also shown below. Is there any preferred way to do this?
My thought is to have a service class to ...
1
vote
2answers
48 views
Should I Catch EmptyResultDataAccessException?
I have a SQL statement that I expect will return one row, because I am passing the primary key. So my choices are to
Wrap the queryForObject in a try/catch, catching ...
0
votes
1answer
28 views
Spring jdbcTemplate executing query
I have a strange problem ,
My Query looks like below.
String tokenQuery = "select id from table
where current_timestamp between
creation_time and (creation_time ...
1
vote
2answers
50 views
NamedParameterJdbcTemplate vs JdbcTemplate
I'm a beginner to Spring3.x , I'm learning Spring DAO support.
I want to know the difference between NamedParameterJdbcTemplate and JdbcTemplate.
Which one is the best by means of performance. And ...
0
votes
0answers
21 views
Confusing 'Partial' ResultSet fetching
During code review i found a bit unusual way how to fetch results from DB. We have large table (>10^6 rows) where we run overnight job.
I understand following reasons :
performance is good as we ...
0
votes
1answer
23 views
Group by with Named Parameter with Spring's NamedParamterJdbcTemplate
I'm using PostgreSQL and Spring 3.1 NamedParameterJdbcTemplate.
If I have some SQL which uses a named parameter in the Select & Group By clauses, Postgres will return this as bad grammar. Running ...
1
vote
1answer
37 views
sqljdbc_auth.dll already loaded in another classloader in Mule standalone server
I have a Mule Standalone server, I have two Mule Deployable Archives that I created in MuleStudio, both connect to SQL Server and use integrated authentication. Whichever archive I deploy first ...
0
votes
1answer
87 views
uploading a picture using java to Mysql database
Connection cn;
Statement st;
PreparedStatement pstmt=null;
PreparedStatement pst;
ResultSet rs;
Object fname, mname, lname, bdate, nation, statusq,InstNo, photo, combo, place, ...
0
votes
1answer
111 views
How to insert an ArrayList of String into database using SqlParameterSource
I want to insert the contents of a Person bean into my database table person using Spring's SqlParameterSource. One of the attributes in Person class is an a java.util.List which is causing ...
0
votes
0answers
85 views
How to call oracle stored procedure with spring jdbc when input parameter is date
I'm using spring jdbc to call a function in oracle,
public class MyStoredProcedureImpl extends StoredProcedure {
public MyStoredProcedureImpl(DataSource ds) {
super(ds, "MY_FUNCTION");
...
1
vote
1answer
50 views
JOOQ SQL given 1 parameters but expected 0
I'm trying to figure out how to use JOOQ with NamedParameterJdbcTemplate. I have successfully created other queries, but I'm stuck at creating a query containing the WHERE clause. When I try to run ...
0
votes
0answers
71 views
Calling Stored Procedure using JDBCTemplate
I am having one stored procedure in the database which returns me an output of a select statement in the form of cursor. Now i am not sure and i am not able to find any good example to call that ...
1
vote
2answers
99 views
JdbcTemplate multiple result sets
I am trying to find an easy way to deal with Stored Procedures / SQL returning multiple result sets. I have been using the SimpleJdbcOperations#queryForList() method however this will only return the ...
0
votes
1answer
78 views
Escaping a single quote when using JdbcTemplate For Dynamic WHERE
I am using JdbcTemplate to query the database however i am building a dynamic WHERE clause and i want to escape quotes. Under is an example of how my string looks :
There are times that they would ...
-1
votes
1answer
126 views
Spring JDBCTemplate update statement
There is a datasource configured like below in Spring.
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close">
<property ...
1
vote
1answer
43 views
Change schema dynamically
How can I set Postgres schema dynamically in Java? I tried doing:
this.getDataSource().getConnection().setSchema("mySchema");
I am using spring-jdbc and this is a JdbcDaoSupport instance.
Note: I ...
1
vote
2answers
56 views
Can't invoke list() method on QueryDslJdbcTemplate
I'm using Spring jdbc to get distinct element of a specific column:
template.newSqlQuery().from(qCustomer).groupBy(qCustomer.name).list(qCustomer.name);
According to the official documentation of ...
0
votes
0answers
32 views
EJB 3.1 Transactions with Spring JDBC
I have a EJB (3 Sessionbean for rest WS)and Spring JDBC for DAO to call ORACLE procedures. I am wondering how EJB transaction handling works with SPRING JDBC.
Today I am going to try this... But ...
1
vote
4answers
122 views
How to perform Spring JDBC connection and retrieve data?
I am creating a Web Application using Java and Spring. I need to connect to MySQL database and retrieve data in Servlet to display in my JSP page. I searched lot and got many examples to connect to ...
-1
votes
1answer
46 views
XML document from class path resource
I am getting this error. I am following an online example. It was running fine till I added Spring.xml to get jdbc login values from xml file.
My XML file is under src folder
Main code:
...
1
vote
1answer
63 views
nested transactionTemplate
I have 2 methods that do the following:
void withdraw(int amount) {
transactionTemplate.execute(new TransactionCallback() {
@Override
public Object doInTransaction() { ... }
}
...
1
vote
1answer
41 views
Spring JDBC and keeping objects and database in correct state
I am creating an application in Spring JDBC and I have some questions regarding how to keep the object graphs and the database in correct state. If you have a car object with a list of parts. If you ...
0
votes
0answers
21 views
Updating foreign key field on associated objects when persisted
I am using Spring JDBC and I have created several domain classes. Each class (those that need it) have a field for foreign key. I now wonder where I should "notify" to the related objects that the ...
0
votes
0answers
47 views
How to get the number of rows updated when using a SimpleJdbcCall?
When using spring's SimpleJdbcCall, how can you get the number of rows that were updated in the procedure call? By inspecting the contents of the output map in the debugger, I've managed to get the ...
0
votes
0answers
48 views
Populate complete domain model with Spring JDBC
TL;DR: How do you use Spring JDBC to populate a complex domain model in the best way?
I've previously only used JPA to retrieve stuff from the database, but our db admins complained how many queries ...
1
vote
0answers
73 views
How to execute store procedure multiple time in simplejdbccall spring
simpleJdbcCall = new SimpleJdbcCall(dataSource);
simpleJdbcCall.withProcedureName("sp_login")
.addDeclaredRowMapper(parameterName, rowMapper)
...
0
votes
0answers
86 views
org.springframework.dao.DataAccessResourceFailureException: IO Error: Connection reset;
Facing Connection Reset problem on Long running task. Error is shown at SimpleJdbcCall.execute method call
SimpleJdbcCall call = new SimpleJdbcCall(dataSource);
call.execute(inputMap);
...
2
votes
1answer
108 views
Get generated key value while inserting in partitioned table
Hi I have a table in Postgres, say email_messages. It is partitioned so whatever the inserts i do it using my java application will not effect the master table, as the data is actually getting ...
0
votes
1answer
88 views
How to use RowSetDynaClass with Spring RowMapper to retrieve all rows of a ResultSet?
I have a stored procedure in my Oracle DB which returns a CURSOR and works fine. I want to retrieve the cursor's data in Java without any Object persistence. My only goal is to display it to the ...
0
votes
0answers
294 views
Spring JDBC - Issue when invoking Stored procedure returning multiple cursors (out parameters)
I am facing an issue when invoking an oracle stored procedure that's returning multiple cursors(7) . For some of the cursors values are returned as expected (using their respective row mappers), ...
0
votes
1answer
43 views
Spring JDBC - prevent logging - INFO: Added default SqlReturnUpdateCount parameter named #update-count-1
My standalone application uses Spring JDBC.
I see a lot of the following statements in System.out
Mar 28, 2013 6:42:12 PM org.springframework.jdbc.core.JdbcTemplate extractReturnedResults
INFO: ...
1
vote
2answers
108 views
DAO that emit events on save, update and delete
I have created several DAO classes (I am using Spring JDBC) and I want to emit events on save, update and delete so that I can update the search index as well.
One way would be to create the event ...
0
votes
1answer
69 views
Spring JDBC one to one relationship
I am using Spring JDBC for an application that I am working on and I am facing an issue. In my domain layer I have fields; primitive types and object associations. If a Person belongs to a ...
1
vote
1answer
73 views
How to check if object have been saved to database
I am using Spring JDBC and I want to create a method which checks if it have been persisted to the database yet or not, meaning that would have gotten an auto incremented key.
I have a field named id ...
12
votes
2answers
440 views
Multiple one-to-many relations in Spring JDBC
I am using Spring JDBC and I am a bit unsure on how to work with multiple one-to-many relations (or many-to-many). In this case I am injecting a repository into one of my resultsetextractors so that I ...
1
vote
0answers
31 views
Spring JDBC SQLErrorCodes
I have created a login module using spring security:jdbc-user-service. But I am getting SQLErrorCode exception following is my code.
Data source bean:
<bean id="dataSource" ...
0
votes
0answers
154 views
when does spring jdbc batchUpdate commit?
I have a code where it utilizes SimpleJdbcTemplate in a DAO class which performs insert/update/delete using the "batchUpdate" method provided by the simpleJdbcTempalte.
I have a service class where, ...
0
votes
1answer
55 views
Retrieving objects with associations in Spring JDBC
I am fairly new to using Spring JDBC and I am going to retrieve objects from the database now which have associations to other objects (one-to-many, one-to-one...). I wonder what is the proper way of ...
0
votes
1answer
98 views
Clean way to externalize long (+20 lines sql) when using spring jdbc?
I want to externalize some large queries in my application to properties\sql\xml files. However I was wondering if anyone has some recommendations as to how achieve this in a clean fashion. Most ...
0
votes
1answer
299 views
Spring JDBC BeanPropertyRowMapper yes no ('Y','N') to boolean bean properties
I have a class with some string, int and boolean fields. I have the getters and setters declared for them.
public class SomeClass {
private int id;
private String description;
private ...
0
votes
1answer
181 views
Cannot change transaction read-only property in the middle of a transaction
I am using BoneCP with Postgresql and Spring JdbcTemplate. When JdbcTemplate executes query and then tries to close the connection, it gets this exception:
org.postgresql.util.PSQLException: ...
0
votes
2answers
157 views
How to resolve StaleConnection issue on Websphere
Database: db2, Application Server: websphere 8
We have rest service that updates/reterives values in database. This service is used atmost twice a day. So time period between the rest calls is almost ...
0
votes
2answers
474 views
Different ways of performing bulk insert into database from a java application
I am looking for different ways of performing bulk insert into database (e.g. SQL Server 2012) from a Java application. I need to insert lot of entities into database very efficiently without making ...
0
votes
0answers
76 views
DeadlockLoserDataAccessException while executing jdbc batchUpdate
Recently i got the following exception:
org.springframework.dao.DeadlockLoserDataAccessException: PreparedStatementCallback;
it came when my code was calling the following method:
int[] ...
0
votes
0answers
25 views
spring-data-oracle version 1.0.0 dependency to spring 3.0.7
In my current project we are using Spring Framework in version 3.0.2.
Recently I would like to add spring-data-oracle project in version 1.0.0.RELEASE which is Spring 3.0.7 dependent.
Because of ...



