Tagged Questions
The JdbcTemplate class is a key part of the Spring Framework JDBC abstraction. It takes care of opening and closing connections, translating exceptions etc. while offering a simple API to execute SQL commands.
14
votes
4answers
7k views
How to execute IN() SQL queries with Spring's JDBCTemplate effectivly?
i was wondering if there is a more elegant way to do IN() queries with Spring's JDBCTemplate. Currently i do something like that:
StringBuilder jobTypeInClauseBuilder = new StringBuilder();
for(int i ...
8
votes
3answers
2k views
identity from sql insert via jdbctemplate
Is it possible to get the @@identity from the SQL insert on a Spring jdbc template call? If so, how?
6
votes
4answers
697 views
Spring JDBC vs JDBC
I have been trying to use spring 3.0 SimpleJdbcTemplate and it takes 5 mins to insert 1500 records, whereas it take me a few secs. to insert using straight JDBC. Not sure what I am doing wrong.
4
votes
3answers
2k views
Using Spring's KeyHolder with programmatically-generated primary keys
I am using Spring's NamedParameterJdbcTemplate to perform an insert into a table. The table uses a NEXTVAL on a sequence to obtain the primary key. I then want this generated ID to be passed back to ...
3
votes
2answers
320 views
Is there a Eclipse plugin for Spring JDBCTemplate code generation?
I am planing to use Spring JDBCTemplate for all my database needs. I wanted to know if there is a Eclipse plugin which will take a data base table and auto generate -
The domain model POJOs
DAO ...
3
votes
3answers
1k views
Unit testing a DAO class that uses Spring JDBC
I have several DAO objects that are used to retrieve information from a database and I really want to write some automated tests for them but I'm having a hard time figuring out how to do it.
I'm ...
3
votes
3answers
1k views
JPA vs Spring JdbcTemplate
For a new project is JPA always the recommended tool for handling relational data or are there scenarios where Spring JdbcTemplate is a better choice? Some factors to consider in your response:
new ...
3
votes
1answer
807 views
using JdcbTemplate standalone
We are looking into using the JdbcTemplate for accessing the DB - but we have many different DB-connections, that each class could use, so injecting the jdbcTemplate is not an option atm. So if we do ...
3
votes
5answers
5k views
Using prepared statements with JDBCTemplate
I'm using the Jdbc template and want to read from the database using prepared statements. I iterate over many lines in a csv file and on every line I execute some sql select queries with it's values.
...
3
votes
4answers
729 views
How to make a thread try to reconnect to the Database x times using JDBCTemplate
I have a single thread trying to connect to a database using JDBCTemplate as follows:
JDBCTemplate jdbcTemplate = new JdbcTemplate(dataSource);
try{
jdbcTemplate.execute(new ...
3
votes
4answers
6k views
Spring JdbcTemplate - Insert blob and return generated key
From the Spring JDBC documentation, I know how to insert a blob using JdbcTemplate
final File blobIn = new File("spring2004.jpg");
final InputStream blobIs = new FileInputStream(blobIn);
...
3
votes
1answer
1k views
How exactly JdbcTemplate with TransactionManager works together?
As far as I understood DataSourceTransactionManager binds a JDBC connection from the specified DataSource to the current thread, allowing for one thread-bound Connection per DataSource. If it's a pool ...
3
votes
3answers
9k views
Java Programming - Spring and JDBCTemplate - Use query, queryForList or queryForRowSet?
My Java (JDK6) project uses Spring and JDBCTemplate for all its database access. We recently upgraded from Spring 2.5 to Spring 3 (RC1). The project does not use an ORM like Hibernate nor EJB.
If I ...
2
votes
1answer
27 views
Mysql performance
Which approach is better to do a batch delete in mysql db using jdbc.
I have a list of primary keys. Need to delete them.
use batch-update api provided.
delete having where clause having in clause.
...
2
votes
2answers
317 views
getting DateTime from ResultSet in JdbcTemplate
in database my column is of type TIMESTAMP, so my class has properties of type Datetime like this:
public void setDiscoveryDate(final DateTime discoveryDtTm) {
this.discoveryDtTm = ...
2
votes
1answer
301 views
how to copy a data from file to PostgreSQL using JDBC?
I want to copy data from file to PostgreSQL DB using JDBC. I was using JDBC statement object to copy the file into DB. It is very slow.
I came to know that we can also use copy out command to copy ...
2
votes
2answers
254 views
jdbcTemplate query() guaranteed to maintain resultset order?
My question is similar to the one asked here: http://forum.springsource.org/showthread.php?84508-jdbctemplate.query()-sorted-result-set but a clear answer was not provided - an ArrayList does not ...
2
votes
2answers
405 views
Oracle Batch Insert w/No Primary Key Missing Inserts
I'm trying to insert over 100,000 records into an Oracle 9i table with no primary key using the ojdbc14.jar driver and Spring's SimpleJdbcTemplate batchUpdate method. Here's my code snippet:
private ...
2
votes
2answers
399 views
Can I set a JDBC timeout for a single query?
I have a web app on Tomcat, which handles DB connection pooling, and using Spring JDBCTemplate for executing queries. It's been requested that I implement a status page which will be monitored by a ...
2
votes
3answers
1k views
Spring JUnit and Mockito - SimpleJdbcTemplate
Given a class that extends SimpleJdbcDaoSupport, how can you mock SimpleJdbcTemplate?
public class SimpleJdbcDaoSupportExtension extends SimpleJdbcDaoSupport {
public ...
2
votes
3answers
720 views
Spring JDBCTemplate Vs Plain JDBC for insert
We have to insert 2 millions of records across multiple tables and right now we are writing into csv file and using db2 import to load into database.
We wanted to change this logic to some kind of ...
2
votes
2answers
760 views
Spring JDBCTemplate other MySQL datasource than apache commons?
I am using Spring JDBCTemplate to perform SQL operations on an apache commons datasource (org.apache.commons.dbcp.BasicDataSource) and when the service is up and running to long, i end up getting this ...
2
votes
3answers
1k views
Inserting multiple rows using JdbcTemplate
How can I execute the following SQL in a scalable way using JdbcTemplate running on mySQL. In this case, scalable means:
Only one SQL statement is executed on the server
it works for any number of ...
2
votes
2answers
361 views
Instantiating a JdbcTemplate from a java.sql.Connection
I want to obtain a JdbcTemplate in my Java code. I've already got a working java.sql.Connection. To create a new JdbcTemplate it would normally need an instance of the javax.sql.DataSource interface.
...
2
votes
1answer
377 views
jdbctemplate and optimistic locking
In the project I'm in Hibernate and Spring jdbctemplate are mixed. I added optimistic locking. Hibernate works great with versioning but now I have to tansform all this jdbctemplate code to use ...
2
votes
2answers
511 views
Open JdbcTemplate connection in read only mode?
is it possible to open a JdbcTemplate connection in read only mode, so that I can't perform any changes to the underlying data source?
2
votes
5answers
2k views
How can I cancel a long-running query using Spring and JDBCTemplate?
The JDBC java.sql.Statement class has a cancel() method. This can be called in another thread to cancel a currently running statement.
How can I achieve this using Spring? I can't find a way to get a ...
2
votes
1answer
1k views
Spring JDBCTemplate Table Locking with MySQL
I just migrating one of our applications from pure JDBC to Spring's JDBCTemplate. I was wondering how to create a write lock for a table. Do i just execute a "LOCK TABLE foo" Query or is there a ...
1
vote
1answer
36 views
JDBCTemplate in Spring Controller
I need to do some reports that aren't strictly a listing-of-entities. More free-form query, hard-coded SQL, returned as arbitrary JSON.
I'm trying to use JdbcTemplate for that, and using code I've ...
1
vote
2answers
45 views
Return a list, I already have a rowmapper implementation
In my UserDao I want to return a list of users.
I already have a UserRowMapper that implements RowMapper<User>.
How can I do this?
I tried:
List rows = getJdbcTemplate().queryforList("select ...
1
vote
2answers
27 views
How to cast resultset in rowmapper to an enum?
I have my rowmapper like:
private static final class UserRowMapper implements RowMapper<User> {
User user = new User();
user.setId(rs.getInt("id"));
user.setUserType( ...
1
vote
2answers
25 views
Suggestions for building sql strings with jdbctemplate
I currently have this:
MyObject myObject = getJdbcTemplate().queryForObject("select * from my_objects where id = ?",
new Object[]{new Integer(id)},
new ...
1
vote
1answer
43 views
What is the best way to get our Person into our User using spring jdbcTemplate
I have two domain objects:
User (which has a Person)
Person
FYI: In our domain there are Persons (people :-) that are not users so we can't just combine them.
I am trying to figure out the best ...
1
vote
1answer
40 views
Using unnamed procedural code in JdbcTemplate
I have a table in an Oracle database where three columns are automatically populated by a trigger when a row in inserted. To retrieve those values when the insert happens, I am using some procedural ...
1
vote
1answer
57 views
spring jdbc template returns an empty result
I have the following code
resultList = daoResources.jdbcTemplate.query(sql, selectParams, new BeanPropertyRowMapper(resultClass));
SQL when run with the selectParams against database, I get result. ...
1
vote
2answers
101 views
StatementCallback error on MySql JDBC template
How do I fix this ? I tested my query and it works in the MySQL commandline and in workbench but how come when I try to use this SQL query on my java program it gives me this error???
Here's my Test ...
1
vote
1answer
76 views
Searching Multiple Tables and Returning/Mapping a Dynamic Result Set
I have a mySql schema named Contacts that contains 4 tables: Contacts, Phone, Email, and Addresses. The Contacts table contains basic information about a person such as an id number, first name, and ...
1
vote
2answers
200 views
Inserting or updating multiple records in database in a multi-threaded way in java
I am updating multiple records in database. Now whenever UI sends the list of records to be updated, I have to just update those records in database. I am using JDBC template for that.
Earlier Case
...
1
vote
1answer
37 views
Do we have something similar/equivalent to Jdbctemplate in Python?
I'm looking for Jdbtemplate equivalent in Python. Any one saw something similar somewhere ?
1
vote
1answer
183 views
JdbcTemplate problems with nested queries
I'm trying to use nested queries with JdbcTemplate but found the issue, it seems to me that it's doesn't suppot nested queries.. Am i right? or what i need to change?
So, i invoke
...
1
vote
3answers
137 views
How can I use JDBCTemplate from Spring JDBC in a Swing desktop application?
I use a lot of JDBC code in my Swing desktop application. Now I read about JDBCTemplate from Spring in Spring in Action and it looks like a nice API for working with JDBC.
But Spring JDBC seem to ...
1
vote
1answer
235 views
Does Spring JDBC provide any protection from SQL injection attacks?
Spring's JdbcTemplate abstraction provides a lot of functionality, but can it be used in such a way that provides protection from SQL injection attacks?
For example, like the kind of protection you ...
1
vote
1answer
337 views
JDBCTemplate with TransactionTemplate and Connection Pool, which datasource to use
I'm not quite sure how to formulate the question, so feel free too tell my that I am thinking completly wrong.
I want to use the JdbcTemplate and the TransactionTemplate. I start of by initilizing my ...
1
vote
1answer
69 views
Is there a generic way of getting columns in ResultsSet of MapRow
I am using SimpleJdbcTemplate and for example I have something like this:
@Override
public Variant mapRow(ResultSet rs, int rowNum) throws SQLException
then I am getting the values from this ...
1
vote
2answers
365 views
Return Type for jdbcTemplate.queryForList(sql, object, classType)
I'm executing a named query using jdbcTemplate.queryForList in the following manner:
List<Conversation> conversations = jdbcTemplate.queryForList(
SELECT_ALL_CONVERSATIONS_SQL_FULL,
...
1
vote
0answers
84 views
PostgreSQL's COPY…TO with JdbcTemplate
I'm using c3p0 connection pool with spring's JdbcTemplate to execute PostgreSQL's COPY ... TO command such as:
jdbcTemplate.update("COPY (SELECT ....) TO '/path/file.txt'");
If the file does not ...
1
vote
2answers
118 views
Strategy to map SQL results to java objects
I am using JDBC (and spring-jdbc's jdbcTemplate) to access my database in a java web application. I have many different varying queries, some where I join to the table over there, one with the ...
1
vote
3answers
186 views
Creating SQL statements programmatically using Spring
I need to create SQL statement programmatically. I have values in map in form <"column_name",value>. Now I have a base query, I add a where clause and as iterating through the map, if the value is ...
1
vote
1answer
103 views
How do I get data from Tapestry BeanEditForms?
I'm using Tapestry 5 and I have a page on which I have a bean edit form. How do I get data submitted in that form after click on submit? I don't want to use Hibernate to persist the data (I'm using ...
1
vote
2answers
625 views
Spring JDBC - Last inserted id
I'm using Spring JDBC. Is a simple way to get last inserted ID using Spring Framework or i need to use some JDBC tricks ?
jdbcTemplate.update("insert into test (name) values(?)", params, types);
// ...