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/tabfmt.h | |
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/tabfmt.h')
-rw-r--r-- | storage/connect/tabfmt.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/storage/connect/tabfmt.h b/storage/connect/tabfmt.h index 80ad1a6ae63..95486a09881 100644 --- a/storage/connect/tabfmt.h +++ b/storage/connect/tabfmt.h @@ -12,6 +12,11 @@ typedef class TDBFMT *PTDBFMT; /***********************************************************************/ +/* Functions used externally. */ +/***********************************************************************/ +PQRYRES CSVColumns(PGLOBAL g, char *fn, char sep, char q, int hdr, int mxr); + +/***********************************************************************/ /* CSV table. */ /***********************************************************************/ class DllExport CSVDEF : public DOSDEF { /* Logical table description */ |