What is the best way to embed Firebird Installation in the Installer for my app? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T21:23:43Z http://stackoverflow.com/feeds/question/528970 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/528970/what-is-the-best-way-to-embed-firebird-installation-in-the-installer-for-my-app 2 What is the best way to embed Firebird Installation in the Installer for my app? Ricardo Acras 2009-02-09T16:57:59Z 2009-02-09T22:14:16Z <p>My app has its own installer but I have to guide my users to install Firebird on their own.</p> <p>I'd like to install it automatically.</p> <p>Thanks.</p> http://stackoverflow.com/questions/528970/what-is-the-best-way-to-embed-firebird-installation-in-the-installer-for-my-app/528985#528985 0 Answer by CheGueVerra for What is the best way to embed Firebird Installation in the Installer for my app? CheGueVerra 2009-02-09T17:00:49Z 2009-02-09T17:00:49Z <p>Create a bootstrapper, for your product and the prerequisites that your product needs.</p> http://stackoverflow.com/questions/528970/what-is-the-best-way-to-embed-firebird-installation-in-the-installer-for-my-app/529030#529030 0 Answer by JMD for What is the best way to embed Firebird Installation in the Installer for my app? JMD 2009-02-09T17:13:59Z 2009-02-09T17:13:59Z <p>Other products might be a good model to follow. For example, <a href="http://pidgin.im" rel="nofollow">Pidgin</a> relies on a specific version of GTK and guides you through running the GTK installer. Being open source, one option would be to look through the <a href="http://pidgin.im/download/source/" rel="nofollow">source</a> for their NSIS installer package to see how they're doing it.</p> http://stackoverflow.com/questions/528970/what-is-the-best-way-to-embed-firebird-installation-in-the-installer-for-my-app/529035#529035 3 Answer by dmajkic for What is the best way to embed Firebird Installation in the Installer for my app? dmajkic 2009-02-09T17:15:45Z 2009-02-09T18:14:39Z <p>You can download Firebird source code. It contains <a href="http://www.jrsoftware.org/isinfo.php" rel="nofollow">InnoSetup</a> script that actually installs firebird on windows targets. You can then modify it to suit your needs. </p> <p>As a side advice, maybe you should consider Inno Setup yourself. </p> http://stackoverflow.com/questions/528970/what-is-the-best-way-to-embed-firebird-installation-in-the-installer-for-my-app/529087#529087 4 Answer by Bill Karwin for What is the best way to embed Firebird Installation in the Installer for my app? Bill Karwin 2009-02-09T17:31:18Z 2009-02-09T22:14:16Z <p>InterBase and hence Firebird provide an API you can use in your installer script to automate installation.</p> <p>See documentation for this API in the document "InterBase 5.5 Embedded Installation Guide" <a href="http://dn.codegear.com/article/26386" rel="nofollow">http://dn.codegear.com/article/26386</a></p> <p>The InterBase Express (IBX) components provide a Delphi binding for the installation API. This is documented in the InterBase 6.0 "Developer's Guide".</p> <p><hr /></p> <p>@mghie and @TOndrej have made comments about my mistake. I was the Product Manager for InterBase once upon a time, when InterBase did provide an installation API. But this answer is outdated, by literally ten years now.</p> <p>Here's another resource which is more up to date:</p> <ul> <li><a href="http://alanti.net/firebird/inst/index.html" rel="nofollow">Unofficial Firebird Installation page</a></li> </ul> <p>This has step-by-step instructions for creating your own Inno Setup installer for Firebird, to accompany your own application installer. No doubt you could use a different installer technology for your application, and simply call the Inno Setup installer as an external program from your installer. But it would probably be more seamless if you also use the Inno Setup for your own product.</p> http://stackoverflow.com/questions/528970/what-is-the-best-way-to-embed-firebird-installation-in-the-installer-for-my-app/529212#529212 1 Answer by Harriv for What is the best way to embed Firebird Installation in the Installer for my app? Harriv 2009-02-09T18:12:04Z 2009-02-09T18:12:04Z <p>If you don't need standalone Firebird server, you could also just include required files in your setup and use Firebird as a embedded SQL server.</p> <p>See <a href="http://www.firebirdsql.org/manual/ufb-cs-embedded.html" rel="nofollow">http://www.firebirdsql.org/manual/ufb-cs-embedded.html</a></p>