mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 23:34:34 +01:00
70b4e6d368
fix MDEV-7415. (To be specified in option_list) modified: storage/connect/ha_connect.cc storage/connect/odbccat.h storage/connect/odbconn.cpp storage/connect/odbconn.h storage/connect/tabodbc.cpp storage/connect/tabodbc.h
17 lines
965 B
C
17 lines
965 B
C
// Timeout and net wait defaults
|
|
#define DEFAULT_LOGIN_TIMEOUT -1 // means do not set
|
|
#define DEFAULT_QUERY_TIMEOUT -1 // means do not set
|
|
|
|
/***********************************************************************/
|
|
/* ODBC catalog function prototypes. */
|
|
/***********************************************************************/
|
|
#if defined(PROMPT_OK)
|
|
char *ODBCCheckConnection(PGLOBAL g, char *dsn, int cop);
|
|
#endif // PROMPT_OK
|
|
PQRYRES ODBCDataSources(PGLOBAL g, int maxres, bool info);
|
|
PQRYRES ODBCColumns(PGLOBAL g, char *dsn, char *db, char *table,
|
|
char *colpat, int maxres, int cto, int qto, bool info);
|
|
PQRYRES ODBCSrcCols(PGLOBAL g, char *dsn, char *src, int cto, int qto);
|
|
PQRYRES ODBCTables(PGLOBAL g, char *dsn, char *db, char *tabpat,
|
|
int maxres, int cto, int qto, bool info);
|
|
PQRYRES ODBCDrivers(PGLOBAL g, int maxres, bool info);
|