phpgroupware-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-cvs] phpgwapi/inc/adodb/tests/testpaging.php, 1.1.2.1


From: nomail
Subject: [Phpgroupware-cvs] phpgwapi/inc/adodb/tests/testpaging.php, 1.1.2.1
Date: Thu, 30 Dec 2004 05:51:48 +0100

Update of /phpgwapi/inc/adodb/tests
Added Files:
        Branch: proposed-0_9_18-branch
          testpaging.php

date: 2004/12/30 04:51:48;  author: skwashd;  state: Exp;  lines: +83 -0

Log Message:
switch to ADOdb
=====================================================================
<?php
/* 
V4.54 5 Nov 2004  (c) 2000-2004 John Lim (address@hidden). All rights reserved.
  Released under both BSD license and Lesser GPL library license. 
  Whenever there is any discrepancy between the two licenses, 
  the BSD license will take precedence. 
  Set tabs to 4 for best viewing.
        
  Latest version is available at http://adodb.sourceforge.net
*/

error_reporting(E_ALL);


include_once('../adodb.inc.php');
include_once('../adodb-pager.inc.php');

$driver = 'oci8';
$sql = 'select  ID, firstname as "First Name", lastname as "Last Name" from 
adoxyz  order  by  id';
//$sql = 'select count(*),firstname from adoxyz group by firstname order by 2 ';
$sql = 'select distinct firstname, lastname from adoxyz  order  by  firstname';

if ($driver == 'postgres') {
        $db = NewADOConnection('postgres');
        $db->PConnect('localhost','tester','test','test');
}

if ($driver == 'access') {
        $db = NewADOConnection('access');
        $db->PConnect("nwind", "", "", "");
}

if ($driver == 'ibase') {
        $db = NewADOConnection('ibase');
        $db->PConnect("localhost:e:\\firebird\\examples\\employee.gdb", 
"sysdba", "masterkey", "");
        $sql = 'select distinct firstname, lastname  from adoxyz  order  by  
firstname';

}
if ($driver == 'mssql') {
        $db = NewADOConnection('mssql');
        $db->Connect('JAGUAR\vsdotnet','adodb','natsoft','northwind');
}
if ($driver == 'oci8') {
        $db = NewADOConnection('oci8');
        $db->Connect('','scott','natsoft');
}

if ($driver == 'access') {
        $db = NewADOConnection('access');
        $db->Connect('nwind');
}

if (empty($driver) or $driver == 'mysql') {
        $db = NewADOConnection('mysql');
        $db->Connect('localhost','root','','xphplens');
}

//$db->pageExecuteCountRows = false;

$db->debug = true;

if (0) {
$rs = &$db->Execute($sql);
include_once('../toexport.inc.php');
print "<pre>";
print rs2csv($rs); # return a string

print '<hr>';
$rs->MoveFirst(); # note, some databases do not support MoveFirst
print rs2tab($rs); # return a string

print '<hr>';
$rs->MoveFirst();
rs2tabout($rs); # send to stdout directly
print "</pre>";
}

$pager = new ADODB_Pager($db,$sql);
$pager->showPageLinks = true;
$pager->linksPerPage = 3;
$pager->cache = 60;
$pager->Render($rows=7);
?>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]