Tagged Questions
The spring-jdbc tag has no wiki summary.
6
votes
1answer
4k views
Spring's Stored Procedure - results coming back from procedure always empty
I am using Spring's JdbcTemplate and StoredProcedure classes. I am having trouble getting the stored procedure class to work for me.
I have a stored procedure on an oracle database. Its signature ...
5
votes
4answers
343 views
Large list returned from a SimpleJdbcTemplate query
here is my problem : at some point in my Java program, I get a (very) big List of Events from a database using the SimpleJdbcTemplate class from Spring.
List<Event> events =
...
4
votes
3answers
608 views
Should I close JNDI-obtained data source?
Update: Apparently Tomcat, starting with 7.0.11, closes the DataSource for you, so it's not available in the webapp's contextDestroyed. See: https://issues.apache.org/bugzilla/show_bug.cgi?id=25060
...
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 ...
4
votes
1answer
1k views
Spring JDBC RowMapper with Class Hiearchies
I wanted to know what the community considers the "best practices" in respect to mapping class hierarchies with Spring JDBC.
We do not have the ability to use a full fledged ORM tool, however we ...
4
votes
2answers
2k views
simple jdbc wrapper
To implement data access code in our application we need some framework to wrap around jdbc (ORM is not our choice, because of scalability).
The coolest framework I used to work with is Spring-Jdbc. ...
3
votes
0answers
62 views
SQL server connection issue using Spring
I found an issue connecting my web application using JDBC or Spring to a SQLServer database (not Express).
At some point of my code I call:
this.conn = ...
3
votes
2answers
570 views
Comparing Querydsl, jOOQ, JEQUEL, activejdbc, iciql and other query DSLs
Can someone point me to some resources about the performance comparison among the different Query DSL libraries available for using with Java, like: Querydsl, jOOQ, JEQUEL, activejdbc, iciql and ...
3
votes
2answers
461 views
What do these Spring debug messages mean?
I use Spring IoC in my stand-alone Java application. When the application starts it creates a log with start-up info. Some messages I don't understand, please help me to understand them and explain ...
3
votes
2answers
321 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
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
2answers
2k views
Getting a JDBC connection by JNDI in Spring JDBC
This page on Spring JDBC says
The DataSourceUtils class … provides static methods to obtain connections from JNDI
However the API doc for DataSourceUtils does not include the said static ...
3
votes
2answers
898 views
How to use SQLErrorCodeSQLExceptionTranslator and DAO class with @Repository in Spring?
I'm using Spring 3.0.2 and I have a class called MovieDAO that uses JDBC to handle the db. I have set the @Repository annotations and I want to convert the SQLException to the Spring's ...
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
2answers
2k views
How to do simple Spring JDBC transactions outside the IoC container?
The project I'm working on uses straight JDBC data access in all its boilerplate glory and doesn't use any transactions. I feel like using transactions and simplifying the way data access methods are ...
2
votes
0answers
45 views
JDBC with Spring slow metadata fetch Oracle
I am using the Spring JdbcUtils.extractDatabaseMetaData() method to analyze the database. The function calls a callback and hands over a DatabaseMetaData object. This object provides the ...
2
votes
2answers
378 views
Using mysql database to authentaicate users in Spring security?
I want to use Spring security to authenticate users in my web application..
Since am not a matured user to Spring framework ,i can't get a clear idea about how we can do the configuration settings to ...
2
votes
2answers
36 views
Jdbc check type compatiblity
Is there some way to check beforehand if a java type is compatible with a sql.Types?
I could type out all the stuff like:
if (BIGINT||TINYINT) try BigInteger.parse(myvalue) and
if ...
2
votes
1answer
309 views
JDBC Resultset vs Rowset which one to choose and when?
So I'm aware of some relative differences i.e., the ResultSet has an 'open connection' to the database whereas a RowSet works in a 'disconnected' fashion.
But that's pretty much what I understand ...
2
votes
1answer
615 views
Stored Procedure returning multiple tables to spring jdbc template
Iam calling a stored procedure from my Spring DAO class using JdbcTemplate. My problem is that, stored procedure returns multiple tables. Is there a way to access multiple tables using Spring ...
2
votes
2answers
1k views
JDBC connection to SQL Server 2005 Instance running on remote machine
Iam trying to connect to sql server 2005 instance running on a remote machine from my spring web application. This web application is running in tomcat server. Earlier When I connected to sql server ...
2
votes
1answer
456 views
One DAO per multiple tables with same structure
I'm using Spring and Oracle DB and due to the need for storing different XML files in separate tables containing the same columns, I would like to use a single DAO for operations on these tables. I'm ...
2
votes
1answer
366 views
Can I return a table of custom object as an OUT parameter when calling stored procedure in JDBC
In Oracle 11g I have a stored procedure like this:
PROCEDURE test_params (o_message_tbl OUT core.message_tbl);
where
create or replace TYPE message_tbl AS TABLE OF core.message_obj;
create or ...
2
votes
2answers
510 views
DataSourceTransactionManager and test for active transaction
I have a simple app that use org.springframework.jdbc.datasource.DataSourceTransactionManager to manage the transactions.
My spring config is as follow:
<tx:annotation-driven/>
<bean ...
2
votes
2answers
767 views
Can I ask JDBCTemplate to expand a list parameter for use in an in() clause?
Can I do something like this:
select * from mytable m where m.group_id in (?)
... and pass in a list or array of arguments to be expanded in to my parameter, ie:
select * from mytable m where ...
2
votes
3answers
446 views
Get list of all table names from spring SimpleJdbcTemplate
Is there a way to obtain the list of all table names in the database using Spring's SimpleJdbcTemplate?
The database being queried is Oracle if that helps in any way. Thanks.
2
votes
1answer
808 views
SimpleJdbcTemplate and null parameters
I'm using SimpleJdbcTemplate and MapSqlParameterSource in the folowing way:
MapSqlParameterSource parameterSource = new MapSqlParameterSource();
parameterSource.addValue("typeId", typeId, ...
1
vote
2answers
29 views
manage many database
I search a way in a spring 3.x application to manage many database.
Now we support mysql, but we need to support firebird and postgress sql.
we don't use orm.
what is the best way to support many ...
1
vote
1answer
50 views
Using “where in” in spring-jdbc
Is there a way to delete a bunch of elements using "where... in" in SQL, like so:
HashSet<String> idStrings = ...;
SimpleJdbcTemplate template = getTemplate();
template.update("DELETE FROM ...
1
vote
2answers
85 views
JSF ViewScoped Mangedbean creating new instance object on every postback
I am having the below managed bean. But every time I do a post back to the same bean ie while calling updateFileList. I get a new instance of FileDAO.
How can I prevent this?
Is it safe to have a ...
1
vote
1answer
36 views
Datasource that saves SQL queries in a file, with Java?
I have 2 identical databases and I would like to save all the queries that a Java script runs against the first one (I use Spring Jdbc) in a file that I could run against the second database. Is it ...
1
vote
1answer
91 views
Spring JDBC template without Spring
Is there Java library like Spring JDBC Template, with same quality of code and documentation and similar data access exceptions hierarchy, but without dependancies on other Spring modules ...
1
vote
1answer
93 views
simpleJdbcTemplate multiple row fetch
I'm using SimpleJdbcTemplate to fetch a list of records from a database. Each record corresponds to a data model object. I have searched in the internet a lot but I still
can't figure out how to fetch ...
1
vote
1answer
127 views
JodaTime and BeanPropertySqlParameterSource
The situation is something like this:
PostgreSQL Database table has a field dateAdded which is timestamp
The Pojo Model object maps this field as
class MyModel{
org.joda.time.DateTime ...
1
vote
1answer
67 views
Spring Jdbc Template returning Int as Long?
I have 3 columns in my MySQL table, 2 are INTs and one VARCHAR.
I am getting class cast exception: java.lang.ClassCastException: java.lang.Long cannot be cast to java.lang.Integer. Heres my code:
...
1
vote
3answers
140 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
104 views
Jdbc Connection Pooling - using multiple schema known at runtime only
I am working on an engine that is doing the following:
gets data provider info from DB (that tells me to what database & schema details to connect to get my data)
use that info to connect to the ...
1
vote
1answer
71 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
634 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);
// ...
1
vote
2answers
339 views
How to configure correct timezone in JDBC?
I've this url to set up the connection in my Italy website, however, when i try to perform some insert action from the site, the date is still not right. (it should be for example: 01:24, but it is ...
1
vote
1answer
458 views
Why does Spring have class JdbcDaoSupport, but no analagous class JmsSupport?
Why does the Spring Framework have class JdbcDaoSupport that requires a DataSource and creates a JdbcTemplate internally, but has no analagous class JmsSupport that might require a JMS ...
1
vote
2answers
1k views
How to retrieve a row in a database and convert it into an object in Spring?
I'm trying to learn how to do CRUD operations in Spring 2.5.6. I made a table in my database called companies that has 2 fields: id and name. What I want to do is to retrieve a row from the table ...
1
vote
4answers
116 views
Help need with transforming Java lists/collections or something
I have a list of objects returned from getJdbcTemplate().query
that look like this
object(test,test,test,1)
object(test,test,test,2)
object(test,test,test,3)
How can I transpose these into one ...
1
vote
2answers
270 views
In Spring JDBC, how to set RESULT SET HOLDABILITY on statements?
I would like to prepare statements with resultSetHoldability parameter set to esultSet.CLOSE_CURSORS_AT_COMMIT:
PreparedStatement stmnt = conn.prepareStatement(sql, resultSetType, ...
1
vote
1answer
100 views
Spring JDBCTemplate on Seam-based app
When manual SQL is required (JDBC API with pre-written queries), what is the best approach in a Seam-based application ?
In Seam Documentation, use of Spring bridge to inject a Spring JDBCTemplate is ...
1
vote
2answers
563 views
Paged queries with JdbcTemplate
I'm currently working on a migration project, to migrate data from the old db to the new one (please do not ask why I'm going through a Java application for this, it's what the customer requires).
...
1
vote
1answer
196 views
PreparedStatement - not binding all the parameters
I'm using Spring-JDBC to execute the SQL and fetch the results.
SELECT
SUM(spend) total_sum
FROM TABLE_NAME
WHERE
sup_id = ? AND
( ( YEAR = ? AND period ...
1
vote
1answer
286 views
Spring JDBC versus Derby Stored Procedure
Derby documents syscs_util.syscs_backup_database.
I made the following trivial class:
public class DerbyMemoryDatabaseDumpDao extends JdbcDaoSupport {
private SimpleJdbcCall caller;
...
1
vote
3answers
1k views
Do a DB2 insert with a select and parameters
I want to do something like this:
INSERT INTO TABLEA
(
COLUMN1, COLUMN2, COLUMN 3
)
SELECT FOOBAR, DOOBAR, ?
FROM TABLEB
And then send this to JDBC via Spring JDBC to update...
...
1
vote
1answer
73 views
Send Multiple Data to DB in Spring
I have this scenario in my Spring MVC Apps.
User has to choose what hobbies he/she likes. He can choose at least one or many hobbies.
My problem is this, If I need to save the list of hobbies into ...