Rashid Abzalov
Rashid Abzalov
In Firebird 4.0, all executables are located in the root directory of its installation, including fbclient.dll. As a temporary fix, you can create the symlink to the BIN folder: mklink...
Steps: 1) Execute query (with F4 short cut) that does not returns records: as example - select * from rdb$database where 11 2) Press Ctrl+Left (thinking we are in the...
From firebird.conf: ``` # Normally, Firebird uses SO_KEEPALIVE socket option to keep track of # active connections. If you do not like default 2-hour keepalive timeout # then adjust your...
``` create database 'c:\test.fdb' user 'sysdba' password 'masterkey'; create table t(c blob sub_type 1); commit; set term ^; create or alter procedure p returns (c blob sub_type 1) as begin...
Сan be reproduced with isql: on client side: connect server_host:/tmp/test.fdb user sysdba password masterkey; on server side: disconnect the server from the network on client side: select * from rdb$database;...