Subject Re: [firebird-support] Fireruby problem (RubyOnRails)
Author Steve Wiser
It also has bad BLOB support....

-steve

Anderson Farias wrote:
>
> Hi,
>
> To make it work using some charset (other than none) you must do a little
> change in the source code, AFAIR.
>
> It also has some other bugs... the project is not at all active. =(
>
> Regards,
> Anderson
>
> ----- Original Message -----
> From: "Yusuf Celik" <ycelik@... <mailto:ycelik%40oytek.com.tr>>
> To: <firebird-support@yahoogroups.com
> <mailto:firebird-support%40yahoogroups.com>>
> Sent: Monday, September 17, 2007 10:58 AM
> Subject: RE: [firebird-support] Fireruby problem (RubyOnRails)
>
> > Hi Lee,
> > The following works for me
> >
> > require 'rubygems'
> > require_gem 'activerecord'
> > include Benchmark
> >
> > ActiveRecord::Base.establish_connection(
> > :adapter => "firebird",
> > :host => "localhost",
> > :database => "D:\\Projects\\Junk\\TEST.FDB",
> > :username => "SYSDBA",
> > :password => "masterkey"
> > )
> > class Personel < ActiveRecord::Base
> > set_table_name "TBL_PERSONEL" #override table name
> > end
> > p Personel.column_names()
> > Personel.benchmark("Creating project") do
> > pers = Personel.find(:all)
> > puts "Total: #{pers.length}"
> >
> > pers.each do |p|
> > puts "Name/Surname: #{p.name+' '+p.surname}."
> > end
> > end
> >
> >
> > Regards
> > Yusuf Celik
> >
> >
> >
> > ________________________________
> >
> > From: firebird-support@yahoogroups.com
> <mailto:firebird-support%40yahoogroups.com>
> > [mailto:firebird-support@yahoogroups.com
> <mailto:firebird-support%40yahoogroups.com>] On Behalf Of lee_longmore
> > Sent: Saturday, September 15, 2007 9:06 PM
> > To: firebird-support@yahoogroups.com
> <mailto:firebird-support%40yahoogroups.com>
> > Subject: [firebird-support] Fireruby problem (RubyOnRails)
> >
> >
> >
> > I am getting the following RoR controller exception when trying to
> > access my newly installed Firebird DB (v2.0.1) (to replace MySQL) from
> > my RubyOnRails application.
> >
> > libfbclient.so.1: cannot open shared object file: No such file or
> > directory - /usr/local/lib/ruby/gems/1.8/gems/fireruby-0.4.0-i586-
> > linux/lib/fr_lib.so
> >
> > I have installed the fireruby gem using "sudo gem install fireruby".
> >
> > I am running ruby 1.8.5 and rails 1.2.3.
> >
> > Any ideas most appreciated.
> >
> > Thanks,
> > Lee.
> >
> >
> >
> >
> >
> >
> > [Non-text portions of this message have been removed]
> >
> >
>
>