develooper Front page | perl.beginners | Postings from September 2008

DBD::SQLite and column_info

From:
sam.paquin
Date:
September 3, 2008 03:43
Subject:
DBD::SQLite and column_info
How do you use column_info with DBD::SQLite?  Any set of parameters I
use result in getting back undef. All of the following commands return
undef but $DBI::err remains false:

	$info = $dbh->column_info('%', '%', '%', '%');
	$info = $dbh->column_info('%', '%', 'mytable', '%');
	$info = $dbh->column_info('%', '%', 'mytable', undef);
	$info = $dbh->column_info(undef, undef, undef, undef);

All I want is the information about "mytable".  What's the correct
syntax?




nntp.perl.org: Perl Programming lists via nntp and http.
Comments to Ask Bjørn Hansen at ask@perl.org | Group listing | About