Android Question work with paradox (file .db)

cncncn

Member
Licensed User
Longtime User
Hi,

I need to work with paradox. Paradox delivers files .db. It's possible to use SQLite for paradox ?
 

DonManfred

Expert
Licensed User
Longtime User
No

You need to setup an RDC which connects to this paradox-Database...

android has no build in support for paradox i believe.
 
Upvote 0

cncncn

Member
Licensed User
Longtime User
ok thank you. I am beginner and I want to be sure. SQLite can works with my table.db and after i use SMB for upload my new table.
 
Upvote 0

fatman

Active Member
Licensed User
Longtime User
Don Manfred is right there is no way using Paradox-Tables under Android.
But there is no need to export from Paradox to csv and importing your data into sqlite.
You can get a dll here http://www.sqlite.org/download.html enabling you to write sqlite tables directly.
 
Upvote 0

miquel

Member
Licensed User
Longtime User
you can user Alex Nolan's PDX Viewer to view and export your Paradox table to different formats including SQL statements.
 
Upvote 0

fatman

Active Member
Licensed User
Longtime User
Structuring the discussion:
If you have a paradox-tables you have 3 possibilities (as far as I know):

1. You gonna export all to csv and import the data into sqlite. The import can be done on the tablet.
2. You use a tool like lex Nolan's PDX Viewer as miquel stated above doing the export-things
3. You have Delphi like me and use the sqlite-dll-win32-x86-3080500.zip you can download from http://www.sqlite.org/download.html

To my mind number 3. is the most elegant way- cause you can create sqlite-tables directly out of your Windows/Delphi-Application.
 
Upvote 0

cncncn

Member
Licensed User
Longtime User
Thanks for your help.
I see with my superior of paradox table can transform to .txt. So i use this method.
 
Upvote 0
Top