| Author |
Oracle NLS support thru JDBC
|
Chinmay Bajikar
Ranch Hand
Joined: Dec 08, 2001
Posts: 159
|
|
Hi, I would like to know something about Oracle National Language Support. Does this mean that for this code snippet, ----------------------------------- Float f = new Float("123.23"); preparedStatement.setFloat(1,f); ----------------------------------- wont work on Oracle Server In France, And it would require, ----------------------------------- float f = Float.parseFloat("123.34"); Locale l = Locale.FRENCH; DecimalFormat f1 = (DecimalFormat)NumberFormat.getInstance(l); String s = f1.format(f).toString(); preparedStatement.setString(1,s); ----------------------------------- I am really clueless about this whole thing.... Gimmie some directions as to where should i look. Thanks, Chinmay
|
The strength of the Wolf is the pack & the strength of the pack is the wolf....Rudyard Kipling
|
 |
 |
|
|
subject: Oracle NLS support thru JDBC
|
|
|