Firebird SQL Stored procedures in .NET

Jiří Činčura wrote on Firebird-devel : There’s something I’ve been working on for a few evenings and weekends.
As you might know, from Firebird 3 there’s and interface to write a
plugin that allows to execute any code as stored procedure, function or
trigger.

So why not to have these in .NET, right? I have a working plugin right
now. Currently only stored procedures are supported. No blobs at the
moment as well

FB/Java plugin

I’m pleased to release first test version of FB/Java, compatible with Firebird 3.0.0.

https://github.com/FirebirdSQL/fbjava/releases

FB/Java is an External Engine plugin for Firebird that makes Firebird capable of run functions, procedures and triggers made in the Java platform.

It complements Jaybird making it interface with Firebird engine and handling the infrastructure necessary to support user routines.

It also has a client utility with functions to install and uninstall the plugin in a database and that users may use to deploy and undeploy Java classes and resources stored in JAR files to a database.

Bugs should be filed in the github project.

This test version uses a modified snapshot of Jaybird 3.0.
Adriano