Help for this page

Select Code to Download


  1. or download this
    sqlite> .schema
    CREATE TABLE info (
    ...
                 Other
                   );
    sqlite>
    
  2. or download this
    sqlite> select * from info where key = 'ScottyZ';
    ScottyZ|ScottyZ||pics/ScottyZ.jpg|thumbs/ScottyZ.jpg|lightsteelblue|ni
    +ce||||||||
    sqlite>
    
  3. or download this
        my $cmd = "select * from info where key = $key_sel";
        $sth = $dbh->prepare($cmd);
    ...
                  my $key =  $row[0];
                 }
    
  4. or download this
    DBD::SQLite::st execute failed: no such column: ScottyZ at ./ztkdb1d l
    +ine 395.
    Tk::Error: dbih_setup_fbav: invalid number of fields: 0, NUM_OF_FIELDS
    + attribute probably not set right at ./ztkdb1d line 398.
     main::browseThis at ./ztkdb1d line 398
    
  5. or download this
     print "$key_sel\n";
        my $cmd = "select * from info";
    ...
                  my $key =  $row[0];
               }