Incompatible wire encryption levels requested on client and server with Firebird ado.net provider

The problem has nothing to do with SRP in itself, but that the Firebird .NET provider version 5.0.0.0 only added SRP support, but does not yet implement the wire protocol encryption. This wire protocol encryption does – by default – depend on SRP for its session key, but the fact SRP is implemented, does not … Read more

Update a table with join?

It is not possible to do this with a JOIN. The Firebird UPDATE statement has no FROM clause. The syntax is: UPDATE {tablename | viewname} [[AS] alias] SET col = newval [, col = newval …] [WHERE {search-conditions | CURRENT OF cursorname}] [PLAN plan_items] [ORDER BY sort_items] [ROWS <m> [TO <n>]] [RETURNING <values>] <m>, <n> … Read more