3 results found
-
Firebird 3 Database Encryption Support
In Firebird 3.0 release there is an option to encrypt the whole database (http://firebirdsql.org/file/documentation/release_notes/html/en/3_0/rnfb30-security-encryption.html).
For the encryption of the database you need a plugin (like this one that is working with AES128 from https://www.ibphoenix.com/products/software/encryptionplugin).
To open an encrypted database you just have to send the encryption key via a callback function "setDBCryptCallback" to the Firebird server.
My idea is if it's possible that the IBDAC component would be upgraded with the functionality to automaticly pass a setted "encryption_password" parameter (maybe there will be a need to have also a paramter for setting the Encryption library).
If you…102 votes -
para fazer testes e simulações
fazer testes e simulações de banco de dados na faculdade e em case.
1 votePlease write suggestions in English, in order to avoid translation mistakes.
-
Transaction Customized = more flexibility to the programmer
In FIBPlus we can make transactions customized
using keywords as:
read, write, wait, no wait, etc... all in custom menu for Transaction object
1 voteSuch functionality is implemented in IBDAC.
Here is a code example:
IBCTransaction.IsolationLevel := iblCustom;
IBCTransaction.Params.Clear;
IBCTransaction.Params.Add(‘wait’);
IBCTransaction.Params.Add(‘read_committed’);
IBCTransaction.Params.Add(‘rec_version’);The same can be done in the desing-time using the transaction component’s designer form.
- Don't see your idea?