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