Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

dtsession(5) [hpux man page]

Dt/Session.h(file formats)												Dt/Session.h(file formats)

NAME
Dt/Session.h -- session management services definitions SYNOPSIS
#include <Dt/Session.h> DESCRIPTION
The Dt/Session.h header defines the following as functions: Boolean DtSessionSavePath(Widget widget, char **save_path, char **save_file); Boolean DtSessionRestorePath(Widget widget, char **restore_path, char *restore_file); SEE ALSO
DtSessionSavePath(3), DtSessionRestorePath(3). Dt/Session.h(file formats)

Check Out this Related Man Page

Session::Postgres(3)					User Contributed Perl Documentation				      Session::Postgres(3)

NAME
Apache::Session::Postgres - An implementation of Apache::Session SYNOPSIS
use Apache::Session::Postgres; #if you want Apache::Session to open new DB handles: tie %hash, 'Apache::Session::Postgres', $id, { DataSource => 'dbi:Pg:dbname=sessions', UserName => $db_user, Password => $db_pass, Commit => 1 }; #or, if your handles are already opened: tie %hash, 'Apache::Session::Postgres', $id, { Handle => $dbh, Commit => 1 }; DESCRIPTION
This module is an implementation of Apache::Session. It uses the Postgres backing store and no locking. See the example, and the documentation for Apache::Session::Store::Postgres for more details. USAGE
The special Apache::Session argument for this module is Commit. You MUST provide the Commit argument, which instructs this module to either commit the transaction when it is finished, or to simply do nothing. This feature is provided so that this module will not have adverse interactions with your local transaction policy, nor your local database handle caching policy. The argument is mandatory in order to make you think about this problem. AUTHOR
This module was written by Jeffrey William Baker <jwbaker@acm.org>. SEE ALSO
Apache::Session::File, Apache::Session::Flex, Apache::Session::DB_File, Apache::Session::Postgres, Apache::Session perl v5.12.1 2007-09-28 Session::Postgres(3)
Man Page