mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
88c76f3b70
catalog functions have been changed: Table_types are now internally represented be enum TABTYPE. Catalog function names are internally translated to a uint. The function GetTypeID was modified accordingly and a new function GetFuncID was implemented in mycat.cc. Modified: ha_connect.cc odbccat.h odbconn.cpp tabodbc.cpp tabfmt.cpp tabmysql.h tabmysql.cpp tabwmi.cpp mycat.h mycat.cc plgdbsem.h reldef.h tabdos.cpp rcmsg.h
8 lines
502 B
C
8 lines
502 B
C
/***********************************************************************/
|
|
/* ODBC catalog function prototypes. */
|
|
/***********************************************************************/
|
|
PQRYRES ODBCDataSources(PGLOBAL g, bool info);
|
|
PQRYRES ODBCColumns(PGLOBAL g, char *dsn, char *table,
|
|
char *colpat, bool info);
|
|
PQRYRES ODBCTables(PGLOBAL g, char *dsn, char *tabpat, bool info);
|
|
PQRYRES ODBCDrivers(PGLOBAL g, bool info);
|