Downloads:
34,527
Downloads of v 3.0.13:
14
Last Update:
19 Jul 2025
Package Maintainer(s):
Software Author(s):
- Firebird Foundation
Tags:
Firebird
This is not the latest version of Firebird available.
- 1
- 2
- 3
3.0.13 | Updated: 19 Jul 2025
Downloads:
34,527
Downloads of v 3.0.13:
14
Maintainer(s):
Software Author(s):
- Firebird Foundation
Firebird 3.0.13
This is not the latest version of Firebird available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Firebird Foundation. The inclusion of Firebird Foundation trademark(s), if any, upon this webpage is solely to identify Firebird Foundation goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Firebird, run the following command from the command line or from PowerShell:
To upgrade Firebird, run the following command from the command line or from PowerShell:
To uninstall Firebird, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download firebird --internalize --version=3.0.13 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade firebird -y --source="'INTERNAL REPO URL'" --version="'3.0.13'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade firebird -y --source="'INTERNAL REPO URL'" --version="'3.0.13'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install firebird
win_chocolatey:
name: firebird
version: '3.0.13'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'firebird' do
action :install
source 'INTERNAL REPO URL'
version '3.0.13'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller firebird
{
Name = "firebird"
Version = "3.0.13"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'firebird':
ensure => '3.0.13',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 19 Jul 2025.
Firebird is a relational database offering many ANSI SQL standard features that runs on Linux, Windows, MacOS and a variety of Unix platforms. Firebird offers excellent concurrency, high performance, and powerful language support for stored procedures and triggers.
Features
- Full ACID compliance
- Multi-version concurrency control (MVCC)
- Stored procedures and triggers
- Rich SQL feature set
- Excellent performance and scalability
- Cross-platform support
- Multiple server architectures (SuperServer, Classic, SuperClassic)
Package Parameters
/ClientOnly
- Install only client libraries/ClientAndDevTools
- Install client libraries and development tools/SuperClassic
- Install SuperClassic server architecture (default: SuperServer)/Classic
- Install Classic server architecture (default: SuperServer)
Installation Examples
Install full server (default SuperServer architecture):
choco install firebird
Install with SuperClassic architecture:
choco install firebird --params "/SuperClassic"
Install client libraries only:
choco install firebird --params "/ClientOnly"
Notes
- This package will uninstall any existing Firebird installation before installing the new version
- The installer configures Firebird to start automatically as a Windows service
- Legacy client authentication is enabled for compatibility
- Client libraries are copied to the system directory for application compatibility
function Get-FirebirdPath {
$HKLMFirebirdInstancesKey = 'HKLM:\Software\Firebird Project\Firebird Server\Instances'
$instances = Get-ItemProperty -Path "$HKLMFirebirdInstancesKey" -ErrorAction SilentlyContinue
if (-not $instances) {
# Not found. Try to search for a 32-bit install in a 64-bit architecture.
$HKLMFirebirdInstancesKey = 'HKLM:\Software\Wow6432Node\Firebird Project\Firebird Server\Instances'
$instances = Get-ItemProperty -Path "$HKLMFirebirdInstancesKey" -ErrorAction SilentlyContinue
}
if ($instances) {
Write-Host "Firebird installation path: $($instances.DefaultInstance)"
$instances.DefaultInstance
} else {
Write-Host 'Firebird is NOT installed.'
$null
}
}
function Uninstall-Firebird {
$firebirdPath = Get-FirebirdPath
if ($firebirdPath) {
if (Get-Service -Name FirebirdServerDefaultInstance -ErrorAction SilentlyContinue) {
Write-Host 'Stopping Firebird service...'
Stop-Service -Name FirebirdServerDefaultInstance -Force
}
$uninstallers = Join-Path $firebirdPath 'unins*.exe'
$lastUninstaller = Get-Item $uninstallers | Sort-Object LastWriteTime | Select-Object -Last 1
if ($lastUninstaller) {
$uninstallerArgs = '/VERYSILENT', '/NORESTART', '/SUPPRESSMSGBOXES'
Write-Host "Calling uninstaller: $($lastUninstaller.FullName)"
Uninstall-ChocolateyPackage -PackageName $packageName -FileType 'EXE' `
-SilentArgs $uninstallerArgs -File $lastUninstaller.FullName
}
}
}
Uninstall-Firebird
Log in or click on link to see number of positives.
- firebird.3.0.13.nupkg (bfd586c3ef5c) - ## / 67
- Firebird-3.0.13.33818-0-x64.exe (6e53bb7642a3) - ## / 72
- Firebird-3.0.13.33818_0_Win32.exe (6c5aa56ea24a) - ## / 72
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Firebird 5.0.3 | 106 | Wednesday, July 30, 2025 | Approved | |
Firebird Database Server 5.0.2 | 477 | Monday, March 31, 2025 | Approved | |
Firebird Database Server 5.0.1 | 1137 | Thursday, August 29, 2024 | Approved | |
Firebird Database Server 5.0.0 | 787 | Saturday, January 20, 2024 | Approved | |
Firebird 4.0.6 | 11 | Saturday, July 19, 2025 | Approved | |
Firebird Database Server 4.0.5 | 47 | Thursday, August 29, 2024 | Approved | |
Firebird Database Server 4.0.4 | 256 | Saturday, December 16, 2023 | Approved | |
Firebird Database Server 4.0.3 | 867 | Thursday, August 24, 2023 | Approved | |
Firebird Database Server 4.0.2 | 1482 | Wednesday, September 28, 2022 | Approved | |
Firebird Database Server 4.0.1.1000 | 676 | Thursday, June 16, 2022 | Approved | |
Firebird Database Server 4.0.1 | 643 | Thursday, March 3, 2022 | Approved | |
Firebird Database Server 4.0.0 | 993 | Wednesday, August 18, 2021 | Approved | |
Firebird 3.0.13 | 14 | Saturday, July 19, 2025 | Approved | |
Firebird Database Server 3.0.12 | 199 | Thursday, August 29, 2024 | Approved | |
Firebird Database Server 3.0.11 | 128 | Thursday, August 24, 2023 | Approved | |
Firebird Database Server 3.0.10.1000 | 157 | Thursday, June 16, 2022 | Approved | |
Firebird Database Server 3.0.9 | 121 | Thursday, March 3, 2022 | Approved | |
Firebird Database Server 3.0.8 | 94 | Thursday, March 3, 2022 | Approved | |
Firebird Database Server 3.0.7 | 13760 | Saturday, October 24, 2020 | Approved | |
Firebird Database Server 3.0.5 | 1887 | Thursday, January 30, 2020 | Approved | |
Firebird Database Server 3.0.4 | 1002 | Friday, October 26, 2018 | Approved | |
Firebird Database Server 3.0.3 | 531 | Tuesday, May 8, 2018 | Approved | |
Firebird Database Server 3.0.2 | 808 | Tuesday, May 2, 2017 | Approved | |
Firebird Database Server 3.0.1.1000 | 556 | Saturday, February 4, 2017 | Approved | |
Firebird Database Server 2.5.9 | 2716 | Tuesday, January 21, 2020 | Approved | |
Firebird Database Server 2.5.8 | 1850 | Tuesday, May 8, 2018 | Approved | |
Firebird Database Server 2.5.7.1000 | 669 | Monday, February 27, 2017 | Approved | |
Firebird Database Server 2.5.6.1000 | 533 | Saturday, February 4, 2017 | Approved | |
Firebird Database Server 2.1.7.1000 | 497 | Saturday, February 4, 2017 | Approved |
Copyright (c) Firebird Foundation
This package has no dependencies.
Ground Rules:
- This discussion is only about Firebird and the Firebird package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Firebird, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.