Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    print "$_\n" for $dbh->tables;
    
    $dbh->disconnect();
    
  2. or download this
    use mysql;
    set password=password('rootpassword');
    ...
    grant all privileges on testdatabase.* to kiat 
    identified by 'yourpassword';
    flush privileges;