From: Thomas R. <tri...@us...> - 2008-10-08 16:00:02
|
Update of /cvsroot/springframework/spring/src/org/springframework/jdbc/core In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv30583/src/org/springframework/jdbc/core Modified Files: SqlInOutParameter.java Log Message: SPR-5204: added constructor accepting a scale argument Index: SqlInOutParameter.java =================================================================== RCS file: /cvsroot/springframework/spring/src/org/springframework/jdbc/core/SqlInOutParameter.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** SqlInOutParameter.java 12 May 2007 16:31:48 -0000 1.3 --- SqlInOutParameter.java 8 Oct 2008 15:59:45 -0000 1.4 *************** *** 44,47 **** --- 44,58 ---- * @param name name of the parameter, as used in input and output maps * @param sqlType SQL type of the parameter according to java.sql.Types + * @param scale the number of digits after the decimal point + * (for DECIMAL and NUMERIC types) + */ + public SqlInOutParameter(String name, int sqlType, int scale) { + super(name, sqlType, scale); + } + + /** + * Create a new SqlInOutParameter. + * @param name name of the parameter, as used in input and output maps + * @param sqlType SQL type of the parameter according to java.sql.Types * @param typeName the type name of the parameter (optional) */ |