after a days and searching in forums i still can not find some things
that helping me
to connect Rails with postgre SQL of course those are helpful but not
for a stupid person like
me
So i need my friends helping me here and advice me to how can i connect
this two things (ROR and Postgre Sql)
I need your help so much
My eyes going blind because of searching and looking at monitor.
Please Help me.
S.O.S
there is some details about my system ==>
=> I have MS Windows Xp on my desktop
=> I installed ruby 1.9.1-p378
=> I installed rail 2.3.5
=> I installed PostgreSql 8.4
I am a newbie in ROR so please advice me step by step PLEASE.
after a days and searching in forums i still can not find some things
that helping me
to connect Rails with postgre SQL of course those are helpful but not
for a stupid person like
me
So i need my friends helping me here and advice me to how can i connect
this two things (ROR and Postgre Sql)
I need your help so much
My eyes going blind because of searching and looking at monitor.
Please Help me.
S.O.S
Well, youād get better help if you told us what youād already tried and
what didnāt work (with error messages as applicable).
there is some details about my system ==>
=> I have MS Windows Xp on my desktop
=> I installed ruby 1.9.1-p378
=> I installed rail 2.3.5
=> I installed PostgreSql 8.4
I am a newbie in ROR so please advice me step by step PLEASE.
Have you installed any of the gems for connecting Ruby with Postgres
(such as postgres or pg)? Without these gems, Ruby canāt talk to the
DB.
I had same problemā¦ but i use ubuntu 9.04ā¦ i had configure my
postgresql
look at this blog(itās in pt-br) PostgreSQL + Ubuntu 9.04 | Fred Chevitarese ... i
think
the configured is same ā¦ XD
So i need my friends helping me here and advice me to how can i connect
there is some details about my system ==>
(such as postgres or pg)? Without these gems, Ruby canāt talk to the
I had same problemā¦ but i use ubuntu 9.04ā¦ i had configure my
postgresql
look at this blog(itās in pt-br) PostgreSQL + Ubuntu 9.04 | Fred Chevitarese ... i
think
the configured is same ā¦ XD
Can we have and use different DBMS install gem on one machine ?
for example : gem install sqlite-3 and gem install mysql and gem install
ā¦ and use one of them for each project i mean one project use MS SQL
SERVER and another one
use postgreSQL in the same time?
Can we have and use different DBMS install gem on one machine ?
for example : gem install sqlite-3 and gem install mysql and gem install
ā¦ and use one of them for each project i mean one project use MS SQL
SERVER and another one
use postgreSQL in the same time?
Yes, just put the appropriate setting in database.yml. You can even
have different drivers between production and development on the same
app.
This is my database.yml. I use sqlite for test and development and
postgres in production for my main db. I also need data from some tables
located in oracle.
Here is how you write model for table in oracle db:
class Ora_client < ActiveRecord::Base
establish_connection(:oracle)
set_table_name āklients_tableā
end
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.