I am trying to import data from the Northwind (accdb) database and I have both the English and Greek versions. The problems I have are the following:
1) When I am trying to import data from NorthwindGR DB Wolfram outputs everything with ????? is there any way to read/convert to UTF8 ?
2) I am using OpenSQLConnection
northwindConn = OpenSQLConnection[JDBC["Microsoft Access(ODBC)", "C:\\DataIO\\accdb\\Northwind-EN.accdb"]]
and I have also tried the connection successfully with
northwindODBC = OpenSQLConnection[JDBC["ODBC(DSN)", "northwindODBC"]]
then I am reading from Orders table with
SQLSelect[northwindConn, "Orders"]
and
SQLSelect[northwindConn,"Suppliers"]//TableForm
1 Supplier A Andersen Elizabeth A. Null Sales Manager
2 Supplier B Weiler Cornelia Null Sales Manager
etc...
without any problem, but when I try to read data from table e.g.
SQLSelect[northwindConn, "Order Details"]
JDBC::error: [Microsoft][ODBC Microsoft Access Driver] Syntax error in FROM clause. >>
$failed
SQLSelect[northwindConn, "Order Details Status"]
JDBC::error: [Microsoft][ODBC Microsoft Access Driver] Syntax error in FROM clause. >>
$failed
Any ideas, why I am getting this error message and how it can be solved ?
Thank you.
PS: I am using Wolfram 10.0 on Windows 7 x64, MSOffice 2013 and Microsoft Access Database engine 2010 (x64) for compatibility purposes for some other program that requires this. But that does not seem to be the source of the problem because I tried doing the same as above after uninstalling the Access db engine.