DBInterface.close!Method
DBInterface.close!(Firebird.Connection)

Close a Firebird.Connection opened by DBInterface.connect.

DBInterface.connectMethod
DBInterface.connect(Firebird.Connection, host::String, user::String, passwd::String; db::String, db_name::String)

Connect to a Firebird database

DBInterface.executeFunction
DBInterface.execute(stmt::Firebird.Statement; params) => Firebird.Cursor

Execute the prepared statement stmt.

DBInterface.executeFunction
DBInterface.execute(conn::Firebird.Connection, sql::String; params) => Firebird.Cursor

Execute the SQL sql statement with the database connection conn.

DBInterface.prepareMethod
DBInterface.prepare(conn::Firebird.Connection, sql) => Firebird.Statement

Send a sql SQL string to the database to be prepared, returning a Firebird.Statement object