I'm trying to open an encrypt table but I get:
Failed to load table CAC_ENC:An invalid Paradox file header: inner code 0x005
Have I to pass additional properties to the connection method?
If I remove the password protection using the Paradox Database Editor I can read the file.
Davide
|
It failed to through data integrity verification. You can email us your CAC_ENC sample.
>If I remove the password protection using the Paradox Database Editor I can read the file.
HXTT Paradox supports encrypt table, but it think that one byte doesn't obey data integrity so that it refuse to read it.
|
>Have I to pass additional properties to the connection method?
1st way:
Properties properties=new Properties();
properties.setProperty("delayedClose","0");
Connection con = DriverManager.getConnection(url,properties);
2nd way:
url="jdbc:paradox:/c:/yourdirectory?delayedClose=0;charSet=Cp865";
|