In doubt with sqlite3-ruby

A

aurelianito

Hi!
I have a table with an AUTOINCREMENT primary key and I would like to
know how to retrieve this primary key when a new row is inserted. Is it
possible?

Below, I written some sample ruby code for you to see my problem.

require 'sqlite3'
db = SQLite3::Database.new( "test.db" )
db.execute "create table if not exists t1(id integer PRIMARY KEY
AUTOINCREMENT, v1, v2);"

# some code, skipped, may include inserts to t1

db.execute "insert into t1 (v1,v2) values (1,2)" # don't know the
primary key assigned.
db.execute "insert into t1 (v1,v2) values (3,4)" # don't know the
primary key assigned.


Thank's in advance,
Aureliano.
 
E

E. Saynatkari

aurelianito said:
Hi!
I have a table with an AUTOINCREMENT primary key and I would like to
know how to retrieve this primary key when a new row is inserted. Is it
possible?

Below, I written some sample ruby code for you to see my problem.

require 'sqlite3'
db = SQLite3::Database.new( "test.db" )
db.execute "create table if not exists t1(id integer PRIMARY KEY
AUTOINCREMENT, v1, v2);"

Just INTEGER PRIMARY KEY should be enough.
# some code, skipped, may include inserts to t1

db.execute "insert into t1 (v1,v2) values (1,2)" # don't know the
primary key assigned.
db.execute "insert into t1 (v1,v2) values (3,4)" # don't know the
primary key assigned.

The method is called last_insert_rowid, I think,
check the API docs to verify.
Thank's in advance,
Aureliano.


E
 
A

aurelianito

Hi!
Just INTEGER PRIMARY KEY should be enough.


The method is called last_insert_rowid, I think,
check the API docs to verify.

The method is last_insert_row_id (note the "_" between row and id).
Thank you very much for the tip (I didn't knew where look for it).

Aureliano.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,770
Messages
2,569,584
Members
45,075
Latest member
MakersCBDBloodSupport

Latest Threads

Top