[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

first ruby script mysql data input

PB0711

7/22/2007 2:54:00 AM

Hello all,

I'm trying to use ruby for the first time. I want to make a script
that is going to parse through my file and pick stuff up and place it
into a database. When I put it into the database I would like to first
ask the database if there is something already like it and if there is
an "empty" primary key to use.
The key ID's in the database go something like:
1 2 3 5 6 7 8 10 11 12 18 22 23 24 and so on. I want to put stuff into
ID 4, 9, 13 and so on. I was wondering what modules I should use and
how to go about this.
I come from Perl and I'm pretty use to doing this type of thing in
Perl, expect for asking what ID is "free",

So just ideas of how to do it and what tools you all think I will
need

Thank

3 Answers

hemant

7/22/2007 3:29:00 AM

0

On 7/22/07, PB0711 <hpbenton@gmail.com> wrote:
> Hello all,
>
> I'm trying to use ruby for the first time. I want to make a script
> that is going to parse through my file and pick stuff up and place it
> into a database. When I put it into the database I would like to first
> ask the database if there is something already like it and if there is
> an "empty" primary key to use.
> The key ID's in the database go something like:
> 1 2 3 5 6 7 8 10 11 12 18 22 23 24 and so on. I want to put stuff into
> ID 4, 9, 13 and so on. I was wondering what modules I should use and
> how to go about this.
> I come from Perl and I'm pretty use to doing this type of thing in
> Perl, expect for asking what ID is "free",
>
> So just ideas of how to do it and what tools you all think I will
> need
>
> Thank

You would need a library capable of handling connection to mysql db.
You can try:

sudo gem install mysql

Or you can use DBI bindings(which in some form exist in perl also i believe).

you can do google search on "mysql+ruby" and find many meaningful
tutorials and documents.

Todd Benson

7/22/2007 12:49:00 PM

0

On 7/21/07, PB0711 <hpbenton@gmail.com> wrote:
> Hello all,
>
> I'm trying to use ruby for the first time. I want to make a script
> that is going to parse through my file and pick stuff up and place it
> into a database. When I put it into the database I would like to first
> ask the database if there is something already like it and if there is
> an "empty" primary key to use.
> The key ID's in the database go something like:

I think you meant the key ID's in a table.

> 1 2 3 5 6 7 8 10 11 12 18 22 23 24 and so on. I want to put stuff into
> ID 4, 9, 13 and so on. I was wondering what modules I should use and
> how to go about this.
> I come from Perl and I'm pretty use to doing this type of thing in
> Perl, expect for asking what ID is "free",
>
> So just ideas of how to do it and what tools you all think I will
> need

I've never used the mysql gem, but it might look something like this
after you successfully connect to the database:

ids = []
res = db.query( "select id from mytable")
while row = res.fetch_row do
ids << row[0]
end
res.free
ids.map! { |i| i.to_i } # do this just in case mysql doesn't return integers
# at this point you have an array of integers, how you get here is up to you
# now, for the ruby chocolate ...
free_ids = (1..ids.max).to_a - ids

There are other gems for mysql access (activerecord, sequel, and I
think there's an odbc one).

hth,
Todd

Sharon Rosner

7/22/2007 1:13:00 PM

0

> ids = []
> res = db.query( "select id from mytable")
> while row = res.fetch_row do
> ids << row[0]
> end
> res.free
> ids.map! { |i| i.to_i } # do this just in case mysql doesn't return integers
> # at this point you have an array of integers, how you get here is up to you
> # now, for the ruby chocolate ...
> free_ids = (1..ids.max).to_a - ids

here's the sequel version:

require 'sequel/mysql'
DB = Sequel.open('mysql://user@localhost:/mydb')
free_ids = (1..ids.max).to_a - DB[:mytable].map(:id)

best
sharon