JDBF (svcon)

Please, need help. May be its not the right forum, but i will try...

While developping an application using JDBF driver under WSAD, i checked out numeric fields are converting decimal points into comma and saving dbf files with numeric fields like 123,45 instead 123.45 (Clipper do not recognize comma like decimal point).

Is there some way to fix it?

Thanks for your help.

[399 byte] By [aloisio.fariasa] at [2007-10-2 11:45:48]
# 1
Locale.setDefault(Locale.ENGLISH); //force using '.' as decimal point
MartinHilperta at 2007-7-13 5:53:36 > top of Java-index,Archived Forums,Java 2 Software Development Kit (J2SE SDK)...
# 2
Great, Martin...You saved my head. Thanks a lot...I was trying to use this:local = new Locale("en", "US");formato = NumberFormat.getNumberInstance(local);and formatting the values before pass to the field and nothing was happening.Thanks again...
aloisio.fariasa at 2007-7-13 5:53:36 > top of Java-index,Archived Forums,Java 2 Software Development Kit (J2SE SDK)...