Hi,
We are developing an application that deals with Paradox DB. To connect to this DB, we are using the trial version of your driver.
The data in Paradox is accessible to us as a .db file.
To connect using this driver we are using:-
DriverManager.getConnection("jdbc:paradox:ftp://abc:abc@localhost/Paradox");
We would like to know whether accessing the Paradox database in this manner (FTP) causes the complete data (from the .db file) to be transferred over the network to the local machine? or only the result of the SQL query fired would be passed over the network?
Could you please send me the reply as soon as possible.
Thanks & Regards,
Divya
|
If you access data by ftp, it can only return the result of the SQL query fired would be passed over the network.
As a alternative method, you can use ParadoxServer to run at the ftp server. It support full access . You can see our faq document.
|
>We would like to know whether accessing the Paradox database in this manner
> (FTP) causes the complete data (from the .db file) to be transferred over the
> network to the local machine?
Yeah. Just once, then it can be cached in the next operations.
>> or only the result of the SQL query fired would be passed over the network?
>If you access data by ftp, it can only return the result of the SQL query fired would be passed over the network.
Sorry. My meaning is that ftp mode supports only read-only operations(SQL query).
|