|
System | : | Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686 |
Software | : | Apache. PHP/5.3.6-13ubuntu3.10 |
ID | : | uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
|
|
Safe Mode | : | OFF |
Open_Basedir | : | OFF |
Freespace | : | 23.08 GB of 70.42 GB (32.78%) |
|
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON |
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
|
[ System Info ]
[ Processes ]
[ SQL Manager ]
[ Eval ]
[ Encoder ]
[ Mailer ]
[ Back Connection ]
[ Backdoor Server ]
[ Kernel Exploit Search ]
[ MD5 Decrypter ]
[ Reverse IP ]
[ Kill Shell ]
[ FTP Brute-Force ]
|
|
/
usr/
share/
doc/
libphp-adodb/
examples/
- drwxr-xr-x
|
Viewing file: testmssql.php (1.99 KB) -rw-r--r--Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
<?php
/** * @version V4.50 6 July 2004 (c) 2000-2009 John Lim (jlim#natsoft.com). 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://php.weblogs.com * * Test GetUpdateSQL and GetInsertSQL. */ error_reporting(E_ALL);
include('adodb/adodb.inc.php'); include('adodb/tohtml.inc.php');
//========================== // This code tests an insert
$conn = ADONewConnection("mssql"); // create a connection $conn->Connect('127.0.0.1','adodb','natsoft','northwind') or die('Fail');
$conn->debug =1; $query = 'select * from products'; $conn->SetFetchMode(ADODB_FETCH_ASSOC); $rs = $conn->Execute($query); echo "<pre>"; while( !$rs->EOF ) { $output[] = $rs->fields; var_dump($rs->fields); $rs->MoveNext(); print "<p>"; } die();
$p = $conn->Prepare('insert into products (productname,unitprice,dcreated) values (?,?,?)'); echo "<pre>"; print_r($p);
$conn->debug=1; $conn->Execute($p,array('John'.rand(),33.3,$conn->DBDate(time())));
$p = $conn->Prepare('select * from products where productname like ?'); $arr = $conn->getarray($p,array('V%')); print_r($arr); die();
//$conn = ADONewConnection("mssql"); //$conn->Connect('mangrove','sa','natsoft','ai');
//$conn->Connect('mangrove','sa','natsoft','ai'); $conn->debug=1; $conn->Execute('delete from blobtest');
$conn->Execute('insert into blobtest (id) values(1)'); $conn->UpdateBlobFile('blobtest','b1','adodb/cute_icons_for_site/adodb.gif','id=1'); $rs = $conn->Execute('select b1 from blobtest where id=1');
$output = "c:\\temp\\test_out-".date('H-i-s').".gif"; print "Saving file <b>$output</b>, size=".strlen($rs->fields[0])."<p>"; $fd = fopen($output, "wb"); fwrite($fd, $rs->fields[0]); fclose($fd);
print " <a href=file://$output>View Image</a>"; //$rs = $conn->Execute('SELECT id,SUBSTRING(b1, 1, 10) FROM blobtest'); //rs2html($rs); ?>
|