I'm using Firebird 3 with encryption via the AES128 plugin found here. https://www.ibphoenix.com/products/software/encryptionplugin
I have successfully encrypted the database, and I am able to connect and query it using isql
however I am not able to connect from within my ColdFusion CFIDE - Data Sources area. I previously used the dbcrypt
plugin and it worked fine, it was just tremendously slow compared to the un-encrypted database. With the AES128 plugin though, I get the error
Connection verification failed for data source: devBBL java.sql.SQLException: Unsupported operation code: 97 The root cause was that: java.sql.SQLException: Unsupported operation code: 97
My connection information in the CFIDE Data Sources window is the same as it's always been.
JDBC URL: jdbc:firebirdsql:localhost/3050:C:\fbdb\MASTER25.FDBDriver Class: org.firebirdsql.jdbc.FBDriverDriver Name: JayBirdUsername: SYSDBAPassword: PASSWORD
Does anyone have any idea what is causing me to receive this error when trying to connect? Do I need to include some additional argument?