36 |
kaklik |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
$ADODB_LANG_ARRAY = array (
|
|
|
4 |
'LANG' => 'fr',
|
|
|
5 |
DB_ERROR => 'erreur inconnue',
|
|
|
6 |
DB_ERROR_ALREADY_EXISTS => 'existe déjà',
|
|
|
7 |
DB_ERROR_CANNOT_CREATE => 'crétion impossible',
|
|
|
8 |
DB_ERROR_CANNOT_DELETE => 'effacement impossible',
|
|
|
9 |
DB_ERROR_CANNOT_DROP => 'suppression impossible',
|
|
|
10 |
DB_ERROR_CONSTRAINT => 'violation de contrainte',
|
|
|
11 |
DB_ERROR_DIVZERO => 'division par zéro',
|
|
|
12 |
DB_ERROR_INVALID => 'invalide',
|
|
|
13 |
DB_ERROR_INVALID_DATE => 'date ou heure invalide',
|
|
|
14 |
DB_ERROR_INVALID_NUMBER => 'nombre invalide',
|
|
|
15 |
DB_ERROR_MISMATCH => 'erreur de concordance',
|
|
|
16 |
DB_ERROR_NODBSELECTED => 'pas de base de donnéessélectionnée',
|
|
|
17 |
DB_ERROR_NOSUCHFIELD => 'nom de colonne invalide',
|
|
|
18 |
DB_ERROR_NOSUCHTABLE => 'table ou vue inexistante',
|
|
|
19 |
DB_ERROR_NOT_CAPABLE => 'fonction optionnelle non installée',
|
|
|
20 |
DB_ERROR_NOT_FOUND => 'pas trouvé',
|
|
|
21 |
DB_ERROR_NOT_LOCKED => 'non verrouillé',
|
|
|
22 |
DB_ERROR_SYNTAX => 'erreur de syntaxe',
|
|
|
23 |
DB_ERROR_UNSUPPORTED => 'non supporté',
|
|
|
24 |
DB_ERROR_VALUE_COUNT_ON_ROW => 'valeur insérée trop grande pour colonne',
|
|
|
25 |
DB_ERROR_INVALID_DSN => 'DSN invalide',
|
|
|
26 |
DB_ERROR_CONNECT_FAILED => 'échec à la connexion',
|
|
|
27 |
|
|
|
28 |
DB_ERROR_NEED_MORE_DATA => 'données fournies insuffisantes',
|
|
|
29 |
DB_ERROR_EXTENSION_NOT_FOUND=> 'extension non trouvée',
|
|
|
30 |
DB_ERROR_NOSUCHDB => 'base de données inconnue',
|
|
|
31 |
DB_ERROR_ACCESS_VIOLATION => 'droits insuffisants'
|
|
|
32 |
);
|
|
|
33 |
?>
|