Help for this page

Select Code to Download


  1. or download this
    sqlite> create table data (id integer, text);
    sqlite> insert into data values (1, 'test data');
    ...
    ----------  ----------
    1           test data
    sqlite> .q
    
  2. or download this
    #!/usr/bin/perl
    
    ...
     }
     $dbh->disconnect();
    
  3. or download this
    helphand@helphand:~> perl sqlite.pl
    test data
    helphand@helphand:~>