Ruby mysql error

Hi All, I’m trying to run mysql DB with ROR app. I’m using Netbeans 6.5
and whenever I run the server and it tried to hit the DB, I get the
error:


C:/InstantRails-2.0-win/ruby/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/connection_adapters/abstract_adapter.rb:38:
[BUG] Segmentation fault

ruby 1.8.6 (2007-09-24) [i386-mswin32]

This application has requested the Runtime to terminate it in an unusual
way.
Please contact the application’s support team for more information.


Any thoughts

Thanks in advance

Maged

Maged M. wrote:

Hi All, I’m trying to run mysql DB with ROR app. I’m using Netbeans 6.5
and whenever I run the server and it tried to hit the DB, I get the
error:


C:/InstantRails-2.0-win/ruby/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/connection_adapters/abstract_adapter.rb:38:
[BUG] Segmentation fault

ruby 1.8.6 (2007-09-24) [i386-mswin32]

You could try installing other versions of ruby:
one click installer
mingw [1]

with mingw it comes with gdb so you could post a more thorough backtrace
which would probably also be useful.
Try upgrading your gem too.
That type of thing.

[1]

can install some mingw gems via:
gem list --remote --source http://gems.rubyinstaller.org

On Jan 7, 11:14 am, Maged M. [email protected] wrote:

This application has requested the Runtime to terminate it in an unusual

Posted viahttp://www.ruby-forum.com/.

ok, i had this problem and solved it.
the problem is that starting from rails 2.2, mysql support is not
included by default
(sqlite3 is the new default) and you have to install it as a gem
so i assume you did “gem install mysql” or something similar.
now the problem is that this gem does not seem to work with newer
versions of mysql
(at least for now).

specifically, in my case, i use windows for development.
one of my machines had mysql community version mysql-5.0.67-win32 and
everything seemed fine.
on a newer machine i had mysql-5.1.30-win32 and it gave me this
segmentation fault!
simply rolling back to version 5.0.67 fixed this problem.

hope that helps.
-prash.

=> Booting WEBrick…
=> Rails 2.2.2 application started on http://0.0.0.0:3000
=> Ctrl-C to shutdown server; call with --help for options
[2009-02-12 00:02:32] INFO WEBrick 1.3.1
[2009-02-12 00:02:32] INFO ruby 1.8.7 (2008-05-31) [i386-mswin32]
[2009-02-12 00:02:32] INFO WEBrick::HTTPServer#start: pid=4544
port=3000
127.0.0.1 - - [12/Feb/2009:00:03:34 Pacific Standard Time] “GET
/category
HTTP/1.1” 404 618

  • → /category
    127.0.0.1 - - [12/Feb/2009:00:03:36 Pacific Standard Time] “GET
    /favicon.ico
    HTTP/1.1” 200 0
  • → /favicon.ico
    c:/ruby/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/connection_adapters/mysql_adapter.rb:196:
    [BUG] Segmentation fault
    ruby 1.8.7 (2008-05-31 patchlevel 0) [i386-mswin32]

This application has requested the Runtime to terminate it in an unusual
way.
Please contact the application’s support team for more information.

I’m getting this as well… how do I fix?


From: [email protected]
Sent: Friday, January 30, 2009 2:37 PM
Newsgroups: comp.lang.ruby
To: “ruby-talk ML” [email protected]
Subject: Re: ruby mysql error

c:/ruby/lib/ruby/gems/1.8/gems/activerecord-2.2.2/lib/active_record/connection_adapters/mysql_adapter.rb:196:
[BUG] Segmentation fault
ruby 1.8.7 (2008-05-31 patchlevel 0) [i386-mswin32]
I’m getting this as well… how do I fix?

the suggestion above was to install mysql 5.0.x

On Jan 25, 7:50 am, prash [email protected] wrote:

[BUG] Segmentation fault

so i assume you did “gem install mysql” or something similar.

hope that helps.
-prash.

Brilliant! I have been struggling all evening with this problem, and
this solved it in minutes!

Thanks prash.