Last change
on this file since 384 was 232, checked in by luc, 9 years ago |
- inclusione del tema per mobile Futura2 - inclusione del widget per la ricerca dei candidati - inclusione della segnalazione dell'installazione - altre piccole migliorie.
Inserita classe e file mancanti
|
File size:
660 bytes
|
Rev | Line | |
---|
[232] | 1 |
|
---|
| 2 |
|
---|
| 3 | Nel file config.php, aggiungere la variabile:
|
---|
| 4 | $dbtype = "MySQL";
|
---|
| 5 | oppure
|
---|
| 6 | mysql4
|
---|
| 7 | sqlite
|
---|
| 8 | mssql
|
---|
| 9 | oracle
|
---|
| 10 | msaccess
|
---|
| 11 | mssql-odbc
|
---|
| 12 | db2
|
---|
| 13 | postgres
|
---|
| 14 |
|
---|
| 15 | Caricare poi il file db.php :
|
---|
| 16 |
|
---|
| 17 |
|
---|
| 18 | @require_once(config.php");
|
---|
| 19 | @require_once(db/db.php");
|
---|
| 20 |
|
---|
| 21 | ed usare cosi'
|
---|
| 22 | $row = $db->sql_fetchrow($db->sql_query("SELECT * FROM ".$prefix."_config"));
|
---|
| 23 |
|
---|
| 24 |
|
---|
| 25 | sostituendo, per esmpio, mysql_query con $db->sql_query
|
---|
| 26 | e cosi' via.
|
---|
| 27 | Ecco i comandi sql supportati
|
---|
| 28 |
|
---|
| 29 | $db->sql_query
|
---|
| 30 | $db->sql_numrows
|
---|
| 31 | $db->sql_affectedrows
|
---|
| 32 | $db->sql_numfields
|
---|
| 33 | $db->sql_fieldname
|
---|
| 34 | $db->sql_fieldtype
|
---|
| 35 | $db->sql_fetchrow
|
---|
| 36 | $db->sql_fetchrowset
|
---|
| 37 | $db->sql_fetchfield
|
---|
| 38 | $db->sql_rowseek
|
---|
| 39 | $db->sql_nextid
|
---|
| 40 | $db->sql_freeresult
|
---|
| 41 | $db->sql_error
|
---|
| 42 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.