Confronted with the task to develop a database application for a company working in a pure Mac environment, what are my options for a central database server to be used by a Delphi FMX application (except the obvious setting up a Windows or Linux box)?

link|improve this question

I see that this might getting closed as off-topic. Well, in that case I would kindly ask to mention a more suitable place for this question. – Uwe Raabe Jan 12 at 8:20
7  
I think this is very relevant to stack overflow. This is a question any developer using Firemonkey wants to know. – mj2008 Jan 12 at 9:11
The only one I would trust to continue to be forever-available-on-mac-os-x would be Firebird, and MySQL because they are open source, and the only one I would make a long-term-bet on being able to continue to run on Mac Indefinitely is Firebird, because MySQL is now managed by Oracle. Apple has a history of breaking backwards compatibility, orphaning binary only software routinely. Thus, I would learn to build Firebird or MySQL from sources, if I was to support a Mac OS X DB server commercially. – Warren P Jan 12 at 20:45
I changed your title so it's more clearly on-topic for Stack Overflow. The features of the Firemonkey framework which is part of Delphi XE2 is distinctly on-topic. – Warren P Jan 12 at 20:47
feedback

3 Answers

up vote 8 down vote accepted

From http://www.embarcadero.com/products/firemonkey/more-connected:

FireMonkey includes built-in component based access to MS SQL Server, Oracle, IBM DB2, MySQL, Sybase, Informix, InterBase and Firebird databases.

Oracle, MySQL and Firebird are available for Mac OS X - I did not check the others

link|improve this answer
I just noticed that my Interbase Developer Edition License may actually cover a version for Mac OS, too. That might be a good start - at least during development. – Uwe Raabe Jan 12 at 12:28
In order for DBExpress to connect to remote servers, you'll need at least the Enterprise version of Delphi. – Marcus Adams Jan 12 at 13:48
Professional comes with ADO, and allows remote connections, but it's Windows only. – Marcus Adams Jan 12 at 14:00
@Marcus, my RAD Studio is an Architect Edition, so I don't expect any missing pieces concerning database connection. – Uwe Raabe Jan 12 at 15:37
feedback

http://docwiki.embarcadero.com/RADStudio/en/Deploying_dbExpress_Database_Applications

Only a few is listed in this article, so maybe they are all supported database at this moment.

libsqlinf.dylib

For applications connecting to Informix databases

libsqlora.dylib

For applications connecting to Oracle databases

libsqlasa.dylib

For applications connecting to Adaptive Server Anywhere databases

libsqlmys.dylib

For applications connecting to MySQL databases

libsqlfb.dylib

For applications connecting to Firebird databases

libsqlib.dylib

For applications connecting to Interbase databases

libmidas.dylib

Required by database applications that use client datasets

link|improve this answer
1  
Do all these databases run on Mac OS servers? – mjn Jan 12 at 8:06
Only Adaptive Server Anywhere is not supported on Mac (info from Sybase page), all others are supported on Mac (info from their vendors). – Lex Li Jan 12 at 8:22
Oracle no longer supports MacOS servers. Probably because there are no real MacOS servers. Probably because you can't show tha apple logo when your server is buried in a datacenter, or worse runs in a VM... – Mad Hatter Jan 12 at 13:09
@MadHatter, sounds reasonable ;) Meanwhile I was able to spot a Windows Server 2008 at the site. The people I first talked to weren't even aware of its existance - let alone that it is non-MacOS. – Uwe Raabe Jan 12 at 15:41
feedback

Have a look at

MariaDB (It is a drop in replacement for MySql) and runs on the Mac and windows.

To connect to the database look at Devart's MyDac7.x it can connect to both MacOs and Windows

link|improve this answer
Well, that won't exactly fit into the "directly supported" section, but thanks for the hint. – Uwe Raabe Jan 12 at 12:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.