1234567891011121314151617181920 |
- <?php
- #$this; // object reference
- #$this->dbh; // initialized MySQL database handle
- #$this->key; // primary key name
- #$this->key_type; // primary key type
- #$this->key_delim; // primary key deliminator
- #$this->rec; // primary key value (update and delete only)
- #$newvals; // associative array of new values (update and insert only)
- #$oldvals; // associative array of old values (update and delete only)
- #$changed; // array of keys with changed values
- require_once 'auth.php';
- global $adodb;
- $sql = "UPDATE qb_dictionary SET language = UPPER('".$newvals['language']."') ".
- " WHERE language = '".$oldvals['language']."' ";
- $rs = $adodb->Execute($sql);
- if (!$rs) echo $adodb->ErrorMsg();
- ?>
|