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
|
@@ 2711-2716 (lines=6) @@
|
| 2708 |
|
|
| 2709 |
|
if (!isset($tables[$table])) { |
| 2710 |
|
|
| 2711 |
|
if (!$desc) { |
| 2712 |
|
$trouver_table = charger_fonction('trouver_table', 'base'); |
| 2713 |
|
$desc = $trouver_table($table, $serveur); |
| 2714 |
|
// si pas de description, on ne fait rien, ou on die() ? |
| 2715 |
|
if (!$desc) { |
| 2716 |
|
return $couples; |
| 2717 |
|
} |
| 2718 |
|
} |
| 2719 |
|
|