SqlUpdate « Database « Spring Q&A





1. How to pass null to SqlUpdate.update    forum.springsource.org

How to pass null to SqlUpdate.update Hi all, I'm new to Spring, but as far as it goes, I like it. I have a couple question here, hope you can help ...

2. getGeneratedKeys() no result, SqlUpdate / MSSQL Server    forum.springsource.org

getGeneratedKeys() no result, SqlUpdate / MSSQL Server I'm in the process of learning Spring, and I've hit a snag when working with MS SQL Server. After creating the myusers application following ...

3. JdbcTemplate vs SqlUpdate Performance    forum.springsource.org

I am updating a database, one row at a time. I am inserting a new time into a single column, hence the update is very simple. The volume of updates is ...

4. Weird NoClassDefFound exception when executing an SqlUpdate    forum.springsource.org

Weird NoClassDefFound exception when executing an SqlUpdate Hi, I'm having a very strange problem using the Spring JDBC framework, although the error could well be with JBoss or the JDBC driver. ...

5. SQL IN Clause in SqlUpdate Object    forum.springsource.org

SQL IN Clause in SqlUpdate Object I know there is another thread which discusses the IN clause, but I wanted to recast the question in a different way. Is the following ...

6. Newbie: SqlUpdate Spring 1.2.5 WSAD 5 WinXP Oracle 9    forum.springsource.org

Jan 17th, 2006, 11:36 AM #1 xcs1726 View Profile View Forum Posts Private Message Junior Member Join Date Jan 2006 Posts 9 Newbie: SqlUpdate Spring 1.2.5 WSAD 5 WinXP Oracle 9 ...

7. Classes That Extend SqlUpdate: What Package?    forum.springsource.org

Classes That Extend SqlUpdate: What Package? I've done a bit of back tracking from a couple of ORM's to JDBC and I recently stumbled across Spring's fairly elegant approach to JDBC ...

8. Problem with SqlUpdate and Oracle Express    forum.springsource.org

Problem with SqlUpdate and Oracle Express Hi, I'm trying to use Oracle Express with Spring 1.2.7 JDBC. I've used the same code successfully with Sybase and MySql. With Oracle Express I ...

9. SqlUpdate.updateByNamedParam() issue    forum.springsource.org

SqlUpdate.updateByNamedParam() issue Hi, In trying to use SqlUpdate.updateByNamedParam(), I've found the order of the parameters set using RdbmsOperation.declareParameter() must match the order of the named parameters in the SQL. In the ...





10. SQLUpdate and updateByNamedParam with in clause    forum.springsource.org

SQLUpdate and updateByNamedParam with in clause I extend the SQLUpdate class and specify my sql as 'update TABLE set abc = xyz where Id in (:ids)' where ids will be a ...

11. SqlUpdate support for nclob ?    forum.springsource.org

SqlUpdate support for nclob ? I have a class that extends SqlUpdate, with the following: constructor: super(dataSource, MY_SQL); declareParameter(new SqlParameter(Types.VARCHAR)); declareParameter(new SqlParameter(Types.NCLOB)); compile(); Inside my 'insert' method, I've got the following ...

12. problem with SqlUpdate and the euro symbol ''    forum.springsource.org

problem with SqlUpdate and the euro symbol '' Hi, I'm having troubles using org.springframework.jdbc.object.SqlUpdate to insert a String value containing the euro symbol '' in a VARCHAR field in MySQL. The ...