diff options
author | Olivier Bertrand <bertrandop@gmail.com> | 2013-02-09 01:08:15 +0100 |
---|---|---|
committer | Olivier Bertrand <bertrandop@gmail.com> | 2013-02-09 01:08:15 +0100 |
commit | 82e746ea1bd4f0e91e196863c63af75187bd121a (patch) | |
tree | 41f06e7f7f3da8aa3671929498273b10b394d949 /storage/connect/rcmsg.c | |
parent | ec2112f32d423aea353feef388ed31e36337de2b (diff) | |
download | mariadb-git-82e746ea1bd4f0e91e196863c63af75187bd121a.tar.gz |
Put almost all function prototypes in header files that are
included by the program using them.
Continuing implementing the "catalog" tables (ex "info").
Already existing were the ODBC data source table and the
WMI column info table.
A common way to handle them will permit to develop many
other such tables. Implemented:
The ODBC column catalog table.
The ODBC tables catalog table.
The ODBC drivers catalog table.
The INFO table option is replaced by the CATFUNC string option
whode first letter specifies the information to retrieve:
C: Columns (of a table)
T: Tables (of a database)
S: Data sources
D: Drivers
Modified:
ha_connect.cc
odbconn.cpp
odbconn.h
tabodbc.h
tabodbc.cpp
rcmsg.c
tabfmt.h
tabmysql.cpp
tabwmi.cpp
tabwmi.h
resource.h
myconn.h
filamdbf.h
connect.cc
connect.h
Added:
myutil.h
Diffstat (limited to 'storage/connect/rcmsg.c')
-rw-r--r-- | storage/connect/rcmsg.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/storage/connect/rcmsg.c b/storage/connect/rcmsg.c index 5eaa2e8e5ba..a5c4abc79a3 100644 --- a/storage/connect/rcmsg.c +++ b/storage/connect/rcmsg.c @@ -109,6 +109,8 @@ char *GetMsgid(int id) case IDS_SPC_06: p = "Longueur"; break; case IDS_SPC_07: p = "Echelle"; break; case IDS_SPC_08: p = "Pseudo_Colonne"; break; + case IDS_DRV_01: p = "Description"; break; + case IDS_DRV_02: p = "Attributs"; break; case IDS_DSC_01: p = "Nom"; break; case IDS_DSC_02: p = "Description"; break; #else // English @@ -199,6 +201,8 @@ char *GetMsgid(int id) case IDS_SPC_06: p = "Length"; break; case IDS_SPC_07: p = "Scale"; break; case IDS_SPC_08: p = "Pseudo_Column"; break; + case IDS_DRV_01: p = "Description"; break; + case IDS_DRV_02: p = "Attributes"; break; case IDS_DSC_01: p = "Name"; break; case IDS_DSC_02: p = "Description"; break; #endif // English |