J
|
Jane 4/1/2011 |
I recommend you to contact your hosting admin if they support MS Access databases. Usually it's not possible. |
W
|
wpl author 4/1/2011 |
I recommend you to contact your hosting admin if they support MS Access databases. Usually it's not possible.
|
![]() |
Admin 4/1/2011 |
MS Access databases won't work on Linux machine. You either need to switch to another database or use a Windows server. |
W
|
wpl author 4/1/2011 |
MS Access databases won't work on Linux machine. You either need to switch to another database or use a Windows server.
|
![]() |
Admin 4/1/2011 |
The quote from the link above: The Easysoft ODBC-Access Driver can open an Access database stored on a Windows share
|
W
|
wpl author 4/1/2011 |
The quote from the link above: These (and any other Unix ODBC drivers) will be able to connect to MS Access database only if database is located on Windows machine.
|
![]() |
Admin 4/1/2011 |
I would point this question to Easysoft support. |
U
|
Ugain 4/1/2011 |
Hi all, is there any chance to host a PHPRunner-App using data from an Access database on a Linux machine? Thanks
|
W
|
wpl author 4/3/2011 |
Access, a component of Microsoft Office, will not run directly on any version of Unix/Linux. It is easier, and cheaper, to use any number of free tools out there to convert MDB files to MySQL for hosting on Unix OS. The EasySoft unixODBC driver is nothing more than driver code library residing on the Unix OS. This driver ONLY facilitates a remote connection to a MDB file that itself resides on a MS_Windows OS. php on Unix --> unixODBC --> MS_Access (.mdb) file on a WinOS machine.
"select * from table" or "select count (*) from table"
"SELECT top 20 PAECHTER.Name1, PAECHTER.Vorname1, PAECHTER.Name2, PAECHTER.Vorname2, PAECHTER.Stellvertreter, PAECHTER.Strasse, PAECHTER.Hausnr, PAECHTER.PLZ, PAECHTER.Ort, PAECHTER.DEB, PAECHTER.Abbucher, FLAECHEN.Bemerkung, FLAECHEN.Lage, FLAECHEN.Flur, FLAECHEN.[Zähler], FLAECHEN.[Vertrag endet am], FLAECHEN.[Bemerkung zu Vertragsende], FLAECHEN.FLSTKEY, FLAECHEN.ID, FLAECHEN.Nenner, FLAECHEN.[Bemerkung zum Flurstück], FLAECHEN.FLAECHE, FLAECHEN.[Vertrag vom], FLAECHEN.Pachtbeginn, FLAECHEN.[Pachtzins jährlich], FLAECHEN.[Pachtzins jährlich Bemerkung], FLAECHEN.[Nächste Erhöhung] FROM PAECHTER LEFT OUTER JOIN FLAECHEN ON PAECHTER.FLSTKEY = FLAECHEN.FLSTKEY"
"SELECT top 20 FLSTKEY, Bemerkung, Lage, Flur, [Zähler], Nenner, [Bemerkung zum Flurstück], FLAECHE, [Vertrag vom], Pachtbeginn, [Pachtzins jährlich], [Pachtzins jährlich Bemerkung], [Nächste Erhöhung], [Vertrag endet am], [Bemerkung zu Vertragsende], ID FROM FLAECHEN ORDER BY 1 ASC"
|
B
|
bobdansei 4/4/2011 |
Ugain, Sergey, thanks for your input. But by no means did I intend to run the software "Access" on Linux! I only wanted to use an mdb located on a Linux filesystem as a datastore. In the meantime I have been digging around with Easysoft ODBC-Access. What I did was:
"select * from table" or "select count (*) from table"
"SELECT top 20 PAECHTER.Name1, PAECHTER.Vorname1, PAECHTER.Name2, PAECHTER.Vorname2, PAECHTER.Stellvertreter, PAECHTER.Strasse, PAECHTER.Hausnr, PAECHTER.PLZ, PAECHTER.Ort, PAECHTER.DEB, PAECHTER.Abbucher, FLAECHEN.Bemerkung, FLAECHEN.Lage, FLAECHEN.Flur, FLAECHEN.[Zähler], FLAECHEN.[Vertrag endet am], FLAECHEN.[Bemerkung zu Vertragsende], FLAECHEN.FLSTKEY, FLAECHEN.ID, FLAECHEN.Nenner, FLAECHEN.[Bemerkung zum Flurstück], FLAECHEN.FLAECHE, FLAECHEN.[Vertrag vom], FLAECHEN.Pachtbeginn, FLAECHEN.[Pachtzins jährlich], FLAECHEN.[Pachtzins jährlich Bemerkung], FLAECHEN.[Nächste Erhöhung] FROM PAECHTER LEFT OUTER JOIN FLAECHEN ON PAECHTER.FLSTKEY = FLAECHEN.FLSTKEY"
"SELECT top 20 FLSTKEY, Bemerkung, Lage, Flur, [Zähler], Nenner, [Bemerkung zum Flurstück], FLAECHE, [Vertrag vom], Pachtbeginn, [Pachtzins jährlich], [Pachtzins jährlich Bemerkung], [Nächste Erhöhung], [Vertrag endet am], [Bemerkung zu Vertragsende], ID FROM FLAECHEN ORDER BY 1 ASC"
|
W
|
wpl author 4/4/2011 |
wpl I also had several problems with these drives ODBC queries to linux and not only with the most PHPRunner with several others applications. I solved the problem by doing a simple vm with windows XP on linux for apache and ODBC drive ... believe in me is the best way
|
B
|
bobdansei 4/4/2011 |
i think the major problem is with MDBs .. |