Hi!!,,
I am using Apatana IDE for Rails development. I have installed
SQL explorer plugin and connected to "Sybase"database. But through
database.yml I am not able to connect to server.
In fact it gives error while running WEBrick server.
Error is like this :------>
[code]
3109
=> Booting WEBrick...
/usr/lib/ruby/gems/1.8/gems/activerecord-1.15.3/lib/active_record/
connection_adapters/abstract/connection_specification.rb:210:in
`establish_connection'': database configuration specifies nonexistent
sybase adapter (ActiveRecord::AdapterNotFound)
from /usr/lib/ruby/gems/1.8/gems/activerecord-1.15.3/lib/
active_record/connection_adapters/abstract/connection_specification.rb:
202:in `establish_connection''
from /usr/lib/ruby/gems/1.8/gems/activerecord-1.15.3/lib/
active_record/connection_adapters/abstract/connection_specification.rb:
195:in `establish_connection''
from /usr/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/initializer.rb:
229:in `initialize_database''
from /usr/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/initializer.rb:88:in
`process''
from /usr/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/initializer.rb:43:in
`send''
from /usr/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/initializer.rb:43:in
`run''
from ./script/../config/../config/environment.rb:13
from /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`gem_original_require''
... 12 levels...
from /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`require''
from ./script/server:3
from -e:4:in `load''
from -e:4[/code]
And mine database.yml file is ---------->
[code]
# MySQL (default setup). Versions 4.1 and 5.0 are recommended.
#
# Install the MySQL driver:
# gem install mysql
# On MacOS X:
# gem install mysql -- --include=/usr/local/lib
# On Windows:
# gem install mysql
# Choose the win32 build.
# Install MySQL and put its /bin directory on your path.
#
# And be sure to use new-style password hashing:
# http://dev.mysql.com/doc/refman/5.0/en/old-client.html
development:
adapter: sybase
database: griffin
host: 192.168.0.13
port: 5006
username: sa
password:
numconvert: true
# adapter: mysql
# database: depot_development
# host: 192.168.0.180
# port: 3306
# username: root
# password:
# socket: /tmp/mysql.sock
# Warning: The database defined as ''test'' will be erased and
# re-generated from your development database when you run
''rake''.
# Do not set this db to the same as development or production.
test:
adapter: mysql
database: griffin_test
username: root
password:
socket: /tmp/mysql.sock
production:
adapter: mysql
database: griffin_production
username: root
password:
socket: /tmp/mysql.sock[code]
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Ruby on Rails: Talk" group.
To post to this group, send email to
rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---
hiroysato-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
2007-Aug-05 07:01 UTC
Re: Problem regarding Sybase configuration with Aptana IDE
Maybe useful the following info.
http://wiki.rubyonrails.org/rails/pages/HowToSetupSybaseAdapterOnRails
development:
adapter: sybase
database: griffin
host: 192.168.0.13
port: 5006
username: sa
password:
numconvert: true
no need port field.
you have to write server name which wrote in interfaces file on host
field.
like this .
interfaces file ($SYBASE/interfaces)
SYBASE_RAILS
master tcp ether localhost 5000
query tcp ether localhost 5000
development:
adapter: sybase
database: griffin
host: SYBASE_RAILS
username: sa
password: sa_pass
numconvert: true
-- hiro
On 8月1日, 午前1:02, vabb_z
<vaibhav.ranad...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
wrote:> Hi!!,,
> I am using Apatana IDE for Rails development. I have installed
> SQL explorer plugin and connected to "Sybase"database. But
through
> database.yml I am not able to connect to server.
> In fact it gives error while running WEBrick server.
>
> Error is like this :------>
> [code]
> 3109
> => Booting WEBrick...
> /usr/lib/ruby/gems/1.8/gems/activerecord-1.15.3/lib/active_record/
> connection_adapters/abstract/connection_specification.rb:210:in
> `establish_connection'': database configuration specifies
nonexistentsybaseadapter (ActiveRecord::AdapterNotFound)
> from /usr/lib/ruby/gems/1.8/gems/activerecord-1.15.3/lib/
> active_record/connection_adapters/abstract/connection_specification.rb:
> 202:in `establish_connection''
> from /usr/lib/ruby/gems/1.8/gems/activerecord-1.15.3/lib/
> active_record/connection_adapters/abstract/connection_specification.rb:
> 195:in `establish_connection''
> from /usr/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/initializer.rb:
> 229:in `initialize_database''
> from
/usr/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/initializer.rb:88:in
> `process''
> from
/usr/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/initializer.rb:43:in
> `send''
> from
/usr/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/initializer.rb:43:in
> `run''
> from ./script/../config/../config/environment.rb:13
> from /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
> `gem_original_require''
> ... 12 levels...
> from /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
> `require''
> from ./script/server:3
> from -e:4:in `load''
> from -e:4[/code]
>
> And mine database.yml file is ---------->
>
> [code]
>
> # MySQL (default setup). Versions 4.1 and 5.0 are recommended.
> #
> # Install the MySQL driver:
> # gem install mysql
> # On MacOS X:
> # gem install mysql -- --include=/usr/local/lib
> # On Windows:
> # gem install mysql
> # Choose the win32 build.
> # Install MySQL and put its /bin directory on your path.
> #
> # And be sure to use new-style password hashing:
> # http://dev.mysql.com/doc/refman/5.0/en/old-client.html
> development:
> adapter: sybase
> database: griffin
> host: 192.168.0.13
> port: 5006
> username: sa
> password:
> numconvert: true
>
> # adapter: mysql
> # database: depot_development
> # host: 192.168.0.180
> # port: 3306
> # username: root
> # password:
> # socket: /tmp/mysql.sock
>
> # Warning: The database defined as ''test'' will be erased
and
> # re-generated from your development database when you run
''rake''.
> # Do not set this db to the same as development or production.
> test:
> adapter: mysql
> database: griffin_test
> username: root
> password:
> socket: /tmp/mysql.sock
>
> production:
> adapter: mysql
> database: griffin_production
> username: root
> password:
> socket: /tmp/mysql.sock[code]
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Ruby on Rails: Talk" group.
To post to this group, send email to
rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---