I am trying to set the charSet for com.hxtt.sql.dbf.DBFDriver to Cp850 with the following URL:
jdbc:DBF://dbase_data?charSet=Cp850
and I receive:
Connection failed: /dbase_data?charSet=Cp850 doesn't exist!!
|
>jdbc:DBF://dbase_data?charSet=Cp850
Where's your dbase_data directory?
Try
jdbc:dbf:/dbase_data?charSet=Cp850
Or
jdbc:DBF:////dbase_data?charSet=Cp850
|