Lines Matching refs:dbh
25 my $dbh = $_[0];
27 my $sth = $dbh->prepare($sql)
28 or die "Couldn't prepare statement: " . $dbh->errstr;
35 my $dbh = $_[0];
37 my $sth = &execute_sql($dbh, "Select * from $table");
55 my $dbh = DBI->connect("DBI:SQLite:dbname=$dbfile","","")
59 &execute_sql($dbh, "Create table tbl1(name varchar(10), id smallint)");
60 &execute_sql($dbh, "Insert into tbl1 values('yocto',10)");
61 &execute_sql($dbh, "Insert into tbl1 values('windriver', 20)");
62 &select_all($dbh, "tbl1");
64 &execute_sql($dbh, "Update tbl1 set name = 'oe-core' where id = 10");
65 &execute_sql($dbh, "Delete from tbl1 where id = 20");
66 &select_all($dbh, "tbl1");
68 $dbh->disconnect;