in reply to Re: inserting and showing data from an MS Access database
in thread inserting and showing data from an MS Access database
How would I handle the second my $sth? Can I use something other than sth?my $dbh = DBI->connect('DBI:ODBC:test1.mdb') my $sth = $dbh->prepare("SELECT something FROM table") my $sth = $dbh->prepare("INSERT INTO table VALUES (value1, value2, val +ue3)") # rest of program down here
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: inserting and showing data from an MS Access database
by McDarren (Abbot) on Apr 11, 2006 at 07:33 UTC | |
|
Re^3: inserting and showing data from an MS Access database
by davidrw (Prior) on Apr 11, 2006 at 12:42 UTC | |
by Anonymous Monk on Apr 11, 2006 at 21:58 UTC | |
by Anonymous Monk on Apr 12, 2006 at 05:10 UTC | |
by davidrw (Prior) on Apr 12, 2006 at 12:51 UTC | |
by Anonymous Monk on Apr 12, 2006 at 22:10 UTC | |
by Anonymous Monk on Apr 12, 2006 at 22:26 UTC | |
|