The following example works for me. Applicable versions are shown inline:

use strict; use warnings; use DBI; #MS Access 2003 #DBI->installed_versions; # Perl : 5.008008 (MSWin32-x86-multi-thread) # OS : MSWin32 (5.0) # DBI : 1.59 # DBD::ODBC : 1.13 # Connect to the db my $dbpathfile = 'C:\testdb.mdb'; my $db_driver = 'Microsoft Access Driver (*.mdb)'; my $dsn = "DBI:ODBC:DRIVER=$db_driver;DBQ=$dbpathfile"; my $dbh = DBI->connect( $dsn, '', '', { RaiseError => 1, AutoCommit => + 1 } ) or die $DBI::errstr; # Create table for test data my $tblname = 'test_table'; my $tbl_sql = join( ' ', 'CREATE TABLE', $tblname, '(ID AUTOINCREMENT, field1 TEXT,', 'CONSTRAINT', $tblname . '_pk', 'PRIMARY KEY +(ID))' ); $dbh->do( $tbl_sql ); # Insert test data my $insert_sql = join( ' ', 'INSERT INTO', $tblname, '( field1 ) VALUE +S ( ? )' ); my $sth = $dbh->prepare( $insert_sql ); $sth->execute( 'test data' ); # Use @@IDENTITY to get the last insert ID # See http://support.microsoft.com/kb/815629 my $id_sql = 'SELECT @@IDENTITY'; $sth = $dbh->prepare( $id_sql ); $sth->execute; my $id = $sth->fetchrow_array; print "Last insert ID is: $id\n";

Thanks to james2vegas and his post for seeding this approach. Thanks also to mje for considering adding this example to the docs for DBD::ODBC.


In reply to Re: Last Insert ID in MS Access (example using @@IDENTITY) by bobf
in thread Last Insert ID in MS Access by greyhawk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.