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
20 views
Spring JDBC and GeneratedKeyHolder
I have some code this looks like this sample here (Spring 3.1). It works just fine.
But I am wondering if there is a more Spring-ish way of returning the key (Oracle nextval) that I just inserted. ...
1
vote
1answer
26 views
In Spring framework can we write jdbc in jsp
Hello friends i want to know whether writing jdbc connection in jsp is it a good way or not in spring frame work.
0
votes
2answers
63 views
NullPointerException resulting when attempting to access database
This is the method which is giving me the NullPointerException. I have narrowed it down to the line which queries the database.
The code does not reach the second logger. The exception is thrown ...
0
votes
2answers
31 views
DB2 Connection Authorization Faliure Occured Reason: Security Mechanism not supported in Java
I am trying to configure DB2 connection with DB2JDBC Type4 drivers. But I am getting this error.
**
Exception in thread "main"
com.ibm.db2.jcc.am.SqlInvalidAuthorizationSpecException:
...
0
votes
0answers
15 views
Execute Stored procedure using spring jdbc template which has a where in clause in inner query
i am working with spring jdbc templates and i have a simple stored procedure like follows
CREATE PROCEDURE sp_ps_get @serviceUnoList varchar(max)
AS
select @value = max(value)
from ...
0
votes
1answer
22 views
dynamic select query for spring jdbc inbound adapter
Can i define a dynamic query to jdbc inbound channel adapter?
<int-jdbc:inbound-channel-adapter max-rows-per-poll="1"
query ="#{'select * from work where status=0 and and test='' + ...
0
votes
0answers
28 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
23 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
34 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
28 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
59 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
41 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
51 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
30 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
63 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
26 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
26 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
45 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
102 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
128 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
101 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
51 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
80 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
113 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
90 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
148 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
47 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
60 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
37 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
131 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
55 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
68 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
42 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
50 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
55 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
83 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
94 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
115 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
96 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
327 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
48 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
111 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
72 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
77 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
451 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
167 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
58 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
107 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 ...


