PHP » PYTHON |
login |
register |
about
|
PYTHON Exchangeable image information
is this article helpful?
|
Python replacement for PHP's Exchangeable image information
[
edit
| history
]
include('/path/to/adodb.inc.php');
$DB = NewADOConnection('mysql'); $DB->Connect($server, $user, $pwd, $db); # M'soft style data retrieval with binds $rs = $DB->Execute("select * from table where key=?",array($key)); while (!$rs->EOF) { print_r($rs->fields); $rs->MoveNext(); } # PEAR style data retrieval $rs = $DB->Execute("select * from table where key=123"); while ($array = $rs->FetchRow()) { print_r($array); } # Alternative URI connection syntax: $DB = NewADOConnection("mysql://$user:$pwd@$server/$db?persist"); # No need for Connect or PConnect when using URI syntax $ok = $DB->Execute("update atable set aval = 0"); if (!$ok) mylogerr($DB->ErrorMsg()); PHP Exchangeable image informationPHP original manual for Exchangeable image information [ show | php.net ]Exchangeable image information
|
more
Recently updated
more
Most requested
more
Last requests
|