ecrire/req/pg.exp.php 1 location
|
@@ 203-208 (lines=6) @@
|
| 200 |
|
|
| 201 |
|
if (!isset($tables[$table])) { |
| 202 |
|
|
| 203 |
|
if (!$desc) { |
| 204 |
|
$trouver_table = charger_fonction('trouver_table', 'base'); |
| 205 |
|
$desc = $trouver_table($table, $serveur); |
| 206 |
|
// si pas de description, on ne fait rien, ou on die() ? |
| 207 |
|
if (!$desc) { |
| 208 |
|
return $couples; |
| 209 |
|
} |
| 210 |
|
} |
| 211 |
|
|
ecrire/req/sqlite_generique.php 1 location
|
@@ 2611-2616 (lines=6) @@
|
| 2608 |
|
|
| 2609 |
|
if (!isset($tables[$table])) { |
| 2610 |
|
|
| 2611 |
|
if (!$desc) { |
| 2612 |
|
$trouver_table = charger_fonction('trouver_table', 'base'); |
| 2613 |
|
$desc = $trouver_table($table, $serveur); |
| 2614 |
|
// si pas de description, on ne fait rien, ou on die() ? |
| 2615 |
|
if (!$desc) { |
| 2616 |
|
return $couples; |
| 2617 |
|
} |
| 2618 |
|
} |
| 2619 |
|
|