Search notes:

Perl module DBD::ODBC

use warnings;
use strict;

use DBI;

my $username = shift;
my $password = shift;
my $database = shift;

my %attr=();
my $dbh = DBI->connect("dbi:ODBC:$database", $username, $password, \%attr) or die;

for my $r (@{$dbh->selectall_arrayref (
     "select table_name
        from information_schema.tables
       order by table_name")}) {

  print $r->[0], "\n";

}
Github repository PerlModules, path: /DBD/ODBC/script.pl
Perl modules.

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1758209355, '216.73.216.150', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/languages/Perl/modules/DBD/ODBC/index(55): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78