nLeonardt95
nLeonardt95
Font color is white in the tree. (see screenshot) The issue occurs with Windows Server 2008 R2. From Windows Server 2012 and higher, the problem does not exist. 
It would be nice if the installer of Flamerobin would install the corresponding version of MicrosoftVisualC++ VC_redist.
Add 32768 for restore with Firebird 4. 
[FEATURE REQUEST] Backup/Restore - Firebird 3 -SKIP(_DATA) | Firebird 4 -INCLUDE(_DATA)/-SKIP(_DATA)
Hello, it would be nice if these options for backup/restore could also be integrated into Flamerobin. Since Firebird 3 [https://firebirdsql.org/file/documentation/release_notes/html/en/3_0/bk02ch11s03.html#d0e19573](url) Since Firebird 4 [https://firebirdsql.org/file/documentation/release_notes/html/en/4_0/rlsnotes40.html#rnfb40-util-gbak-include-data](url)
Possibility to shut down the database and start it up again. [https://firebirdsql.org/rlsnotesh/rnfb20x-util-gfix.html#rnfb20x-util-gfix-shut](https://firebirdsql.org/rlsnotesh/rnfb20x-util-gfix.html#rnfb20x-util-gfix-shut )
Instead of packages or additionally, wouldn't it also make sense to simply store procedures and function for a table? And then call them e.g. table = article article.MyProcedure()
Background why I am doing this. With the “Global” property in table1, the values from table3 should always be loaded from the main in table2 (there can only ever be...
Here is an example table and procedure for this. ```SQL --DROP PROCEDURE ADDMYTABLE; --DROP TABLE MYTABLE; --commit; CREATE TABLE MYTABLE ( FIELDOLD INTEGER ); SET TERM ^ ; create or...