资 源 简 介
SharkAPI Perl
The SharkAPI-Perl contains helper functions and objects used to simplify application development. The general focus is web development.
Currently the API contains modules that allow hash based access of rdbms data. And an abstraction layer over the DBI:: interface.
Also the API contains modules that provide hash based form data access with connectors to the database API layer.
The library can also be used by other applications in a system unifying the web and non-web programs.
Example
Here you can see the underlying RDBMS, Table, SQL, or even if it is an RDBMS call is hidden!
```
my $cookies = LsL::DAuth::getcookies(sessionid => $sessionid);
foreach my $cookie (@{$cookies}) {
do_something($cookie->{domain},
$cookie->{name},
$cookie->{value}
);
}
```