-
Notifications
You must be signed in to change notification settings - Fork 35
Description
I have an application that runs under Ruby 2.0.0-p648 (x64).
After configuring Devkit (x64), installing Firebird 2.5 (x64):
I successfully install the gem.
But by running the simple test:
require 'fb' include Fb db = Database.new( :database => "localhost:d:/readme.fdb", :username => 'sysdba', :password => 'masterkey') conn = db.connect rescue db.create.connect
I get the following generic error: conn = db.connect ... [BUG] Segmentation fault #38
The error also happens in a clean install of the measured versions.
If I do the same steps however everything on x86 (Ruby 2.0.0-p648 (x86), Devkit (x86), Firebird 2.5 (x86)) the code runs normally.
I've checked in many ways for the correct DLL installed on each version of Firebird.
Today I can't upgrade Ruby as there is a large application running with this specific version.
Any suggestions on how to make it work?
Thank you.