Phyaura Calendar speed inhancement
[openemr.git] / library / adodb / server.php
blob57ee71cbf1903bd1f4c486b8e93e3d4e88969518
1 <?php
3 /**
4 * @version V4.20 22 Feb 2004 (c) 2000-2004 John Lim (jlim@natsoft.com.my). All rights reserved.
5 * Released under both BSD license and Lesser GPL library license.
6 Whenever there is any discrepancy between the two licenses,
7 the BSD license will take precedence.
8 */
10 /* Documentation on usage is at http://php.weblogs.com/adodb_csv
12 * Legal query string parameters:
14 * sql = holds sql string
15 * nrows = number of rows to return
16 * offset = skip offset rows of data
17 * fetch = $ADODB_FETCH_MODE
19 * example:
21 * http://localhost/php/server.php?select+*+from+table&nrows=10&offset=2
25 /*
26 * Define the IP address you want to accept requests from
27 * as a security measure. If blank we accept anyone promisciously!
29 $ACCEPTIP = '';
32 * Connection parameters
34 $driver = 'mysql';
35 $host = 'localhost'; // DSN for odbc
36 $uid = 'root';
37 $pwd = '';
38 $database = 'test';
40 /*============================ DO NOT MODIFY BELOW HERE =================================*/
41 // $sep must match csv2rs() in adodb.inc.php
42 $sep = ' :::: ';
44 include('./adodb.inc.php');
45 include_once(ADODB_DIR.'/adodb-csvlib.inc.php');
47 function err($s)
49 die('**** '.$s.' ');
52 // undo stupid magic quotes
53 function undomq(&$m)
55 if (get_magic_quotes_gpc()) {
56 // undo the damage
57 $m = str_replace('\\\\','\\',$m);
58 $m = str_replace('\"','"',$m);
59 $m = str_replace('\\\'','\'',$m);
62 return $m;
65 ///////////////////////////////////////// DEFINITIONS
68 $remote = $HTTP_SERVER_VARS["REMOTE_ADDR"];
70 if (empty($HTTP_GET_VARS['sql'])) err('No SQL');
72 if (!empty($ACCEPTIP))
73 if ($remote != '127.0.0.1' && $remote != $ACCEPTIP)
74 err("Unauthorised client: '$remote'");
77 $conn = &ADONewConnection($driver);
79 if (!$conn->Connect($host,$uid,$pwd,$database)) err($conn->ErrorNo(). $sep . $conn->ErrorMsg());
80 $sql = undomq($HTTP_GET_VARS['sql']);
82 if (isset($HTTP_GET_VARS['fetch']))
83 $ADODB_FETCH_MODE = $HTTP_GET_VARS['fetch'];
85 if (isset($HTTP_GET_VARS['nrows'])) {
86 $nrows = $HTTP_GET_VARS['nrows'];
87 $offset = isset($HTTP_GET_VARS['offset']) ? $HTTP_GET_VARS['offset'] : -1;
88 $rs = $conn->SelectLimit($sql,$nrows,$offset);
89 } else
90 $rs = $conn->Execute($sql);
91 if ($rs){
92 //$rs->timeToLive = 1;
93 echo _rs2serialize($rs,$conn,$sql);
94 $rs->Close();
95 } else
96 err($conn->ErrorNo(). $sep .$conn->ErrorMsg());