Update:
I decided to keep the solution as easy as possible. I found a command line 
paradox db converter from here: 
http://www.dbf2002.com/paradox-converter/index.html and used 
subprocess.call() to it which converts the paradox db into a .csv. Then I 
used import_from_csv_file() to get the data. 

The code is all of two lines:
subprocess.call('pxcnv.exe paradox.db paradox.csv')
db.table.import_from_csv_file(open('paradox.csv','rb'))

David

On Thursday, April 11, 2013 6:25:03 PM UTC-4, Niphlod wrote:
>
> this site comes to the rescue very often....
>
> http://www.connectionstrings.com/paradox#intersolv-3-11-odbc
>
> you can use the connection string just after mssql:// (e.g. 
> mssql://{theconnectionstringhere}) if it has the same t-sql support .
>
> As for seeking "official" support within web2py, I fear that no-one could 
> actually test it if not you ....
>

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to