Help for this page

Select Code to Download


  1. or download this
            use Fcntl;   # For O_RDWR, O_CREAT, etc.
            use SDBM_File;
    ...
            ...
    
            untie %h;
    
  2. or download this
            $h{user} = "bob";
    
  3. or download this
            $h{prefs} = { color => 'red', font => 'large' };
    
  4. or download this
    server:  foo
    database: stuff
    ...
    |bob|blue|large|
    |mary|blue|tiny|
    
  5. or download this
      SELECT name FROM prefs WHERE font = 'tiny';
    |name|
    ...
    |bob|blue|M|
    |mary|blue|F|
    
  6. or download this
      $result => [
        {
    ...
          sex => 'F'
        }
    ];