What is the best way to embed Firebird Installation in the Installer for my app? - Stack Overflow most recent 30 from stackoverflow.com2010-03-21T03:48:55Zhttp://stackoverflow.com/feeds/question/528970http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/528970/what-is-the-best-way-to-embed-firebird-installation-in-the-installer-for-my-app2What is the best way to embed Firebird Installation in the Installer for my app?Ricardo Acrashttp://stackoverflow.com/users/192242009-02-09T16:57:59Z2009-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#5289850Answer by CheGueVerra for What is the best way to embed Firebird Installation in the Installer for my app?CheGueVerrahttp://stackoverflow.com/users/177872009-02-09T17:00:49Z2009-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#5290300Answer by JMD for What is the best way to embed Firebird Installation in the Installer for my app?JMDhttp://stackoverflow.com/users/567932009-02-09T17:13:59Z2009-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#5290353Answer by dmajkic for What is the best way to embed Firebird Installation in the Installer for my app?dmajkichttp://stackoverflow.com/users/392332009-02-09T17:15:45Z2009-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#5290874Answer by Bill Karwin for What is the best way to embed Firebird Installation in the Installer for my app?Bill Karwinhttp://stackoverflow.com/users/208602009-02-09T17:31:18Z2009-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#5292121Answer by Harriv for What is the best way to embed Firebird Installation in the Installer for my app?Harrivhttp://stackoverflow.com/users/77352009-02-09T18:12:04Z2009-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>