Download Latest Version flamerobin-0.9.3.c75f861-setup-x64.exe (3.1 MB)
Email in envelope

Get an email when there's a new version of FlameRobin

Home / v26.8.6
Name Modified Size InfoDownloads / Week
Parent folder
flamerobin_26.8.6_amd64.snap 2026-08-21 3.0 MB
FlameRobin-26.8.6-x64.msi 2026-08-21 16.6 MB
flamerobin-portable-26.8.6-x64.zip 2026-08-21 21.0 MB
FlameRobin-26.8.6-x86.msi 2026-08-21 15.9 MB
flamerobin-portable-26.8.6-x86.zip 2026-08-21 20.0 MB
flamerobin-26.8.6.flatpak 2026-08-21 15.2 MB
flamerobin-26.8.6.deb 2026-08-21 30.8 MB
flamerobin-macos-26.8.6.zip 2026-08-21 7.4 MB
README.md 2026-08-21 2.7 kB
v26.8.6 source code.tar.gz 2026-08-21 1.4 MB
v26.8.6 source code.zip 2026-08-21 1.9 MB
Totals: 11 Items   133.1 MB 0

FlameRobin 26.8.6 Release Notes

FlameRobin v26.8.6 brings targeted fixes for non-selectable stored procedure (without SUSPEND) execution and output parameter retrieval, and resolves exclusive access handling when modifying database access modes (Read-Only / Read-Write).


Highlights & Key Improvements

1. Non-Selectable Stored Procedure (Without SUSPEND) Output Retrieval Fix (#692)

  • Output Row Availability in Statement Backend: Updated FbCppStatement::execute() to mark output rows available (rowAvailableM = hasRow) on execution when output columns are present. Direct cell getters (isNull(), getString(), etc.) and DataGridTable::fetchOne() now reliably read actual field values returned in the output message buffer instead of evaluating to NULL.
  • Selectable vs. Executable SQL Generation: Enhanced RoutineHelper::getRoutineExecutionTemplate and ExecuteRoutineDialog to inspect stored procedure source code for SUSPEND. Procedures with SUSPEND generate SELECT ... FROM proc(...), while executable procedures without SUSPEND directly generate EXECUTE PROCEDURE proc(...), correctly retrieving and displaying singleton output parameters in data grids.
  • Automated Unit Tests: Added regression tests in execute_routine_dialog_test verifying selectable/executable procedure detection and statement singleton output row availability.

2. Database Read-Only Property Modification Exclusive Access Fix (#686)

  • Exclusive Access Handling: In Firebird, switching database access mode (READ ONLY / READ WRITE) requires exclusive database access. When modifying isEditReadOnly, FlameRobin now releases active statement caches in MetadataLoader and temporarily detaches the physical connection (d->getDALDatabase()->disconnect()) without tearing down UI frames or metadata collections.
  • Safe Reconnect & Live Refresh: Reconnects the physical connection immediately following the service call and in error handlers, followed by an in-place d->loadInfo() refresh.
  • Descriptive Error Messaging: If exclusive access cannot be obtained due to other external client attachments, FlameRobin provides a clear, descriptive message indicating that all other active connections must be closed.
  • Automated Service Tests: Extended fbcpp_service_test to verify setReadOnly(true) and setReadOnly(false) operations and property verification.

Full Commit Log since v26.8.5

  • a19e4e58 Release v26.8.6: Update version to 26.8.6 and add release notes
  • e7a47417 Fix database Read-Only property change requiring exclusive access (#686)
  • f613756f Fix executing non-selectable procedure producing NULL results (#692)
Source: README.md, updated 2026-08-21