# phpman > perldoc > Apache::Session::Sybase

## NAME
    [Apache::Session::Sybase](https://www.chedong.com/phpMan.php/perldoc/Apache%3A%3ASession%3A%3ASybase/markdown) - An implementation of [Apache::Session](https://www.chedong.com/phpMan.php/perldoc/Apache%3A%3ASession/markdown)

## SYNOPSIS
     use [Apache::Session::Sybase](https://www.chedong.com/phpMan.php/perldoc/Apache%3A%3ASession%3A%3ASybase/markdown);

     # if you want [Apache::Session](https://www.chedong.com/phpMan.php/perldoc/Apache%3A%3ASession/markdown) to open new DB handles:

     tie %hash, '[Apache::Session::Sybase](https://www.chedong.com/phpMan.php/perldoc/Apache%3A%3ASession%3A%3ASybase/markdown)', $id, {
        DataSource => 'dbi:Sybase:database=sessions;server=SYBASE',
        UserName   => $db_user,
        Password   => $db_pass,
        Commit     => 1,
     };

     # or, if your handle is already opened:

     tie %hash, '[Apache::Session::Sybase](https://www.chedong.com/phpMan.php/perldoc/Apache%3A%3ASession%3A%3ASybase/markdown)', $id, {
        Handle     => $dbh,
        Commit     => 0,
     };

## DESCRIPTION
    This module is an implementation of [Apache::Session](https://www.chedong.com/phpMan.php/perldoc/Apache%3A%3ASession/markdown). It uses the Sybase backing store and the
    Null locking scheme. See the example, and the documentation for [Apache::Session::Store::Sybase](https://www.chedong.com/phpMan.php/perldoc/Apache%3A%3ASession%3A%3AStore%3A%3ASybase/markdown)
    (also for the parameters that get passed to the backing store along with the schema necessary to
    save the sessions) and [Apache::Session::Lock::Null](https://www.chedong.com/phpMan.php/perldoc/Apache%3A%3ASession%3A%3ALock%3A%3ANull/markdown) for more details.

## AUTHOR
    This module was based on [Apache::Session::MySQL](https://www.chedong.com/phpMan.php/perldoc/Apache%3A%3ASession%3A%3AMySQL/markdown) which was written by Jeffrey William Baker
    <<jwbaker@acm.org>>; it was modified by Chris Winters <<chris@cwinters.com>>.

## SEE ALSO
    [Apache::Session](https://www.chedong.com/phpMan.php/perldoc/Apache%3A%3ASession/markdown)

