v5:session:reference:adodb_sess_conn
This is an old revision of the document!
$ADODB_SESS_CONN
This variable holds an instance of the database connection and can be used as required. The connection is itself an instance of a standard ADOdb connections, and all available functionality may be used.
Usage
include_once 'adodb/adodb.inc.php'; include_once "adodb/session/adodb-session2.php"; $driver = 'mysqli'; $host = '127.0.0.1'; $user = 'user'; $pass = 'pass'; $database = 'adodb-sess'; ADODB_session::config($driver,$host,$user,$pass,$database); session_start(); $_SESSION['page'] = 'page1'; /* * Who else is connected? */ $SQL = "SELECT * FROM session2"; $result = $ADODB_SESS_CONN->execute($SQL); /* * etc etc etc...... */
v5/session/reference/adodb_sess_conn.1463928922.txt.gz · Last modified: 2017/04/21 11:38 (external edit)