mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
e2804d9b74
processing that takes care of: - Drastically reduce the amount of storge needed to process them. - Handle longjmp's. - Makes the line limit an opion (MAXRES) - Schema can also be specified with the DBNAME option. - Issue warnings on fetch errors or when result lines have been limited. - Change some column names to reflect ODBC version 3 standard. The documentation have been updated accordingly modified: storage/connect/filamdbf.cpp storage/connect/ha_connect.cc storage/connect/myconn.cpp storage/connect/mysql-test/connect/r/odbc.result storage/connect/mysql-test/connect/r/odbc_postgresql.result storage/connect/mysql-test/connect/r/odbc_sqlite3.result storage/connect/mysql-test/connect/r/odbc_xls.result storage/connect/mysql-test/connect/r/xml.result storage/connect/mysql-test/connect/t/odbc_postgresql.test storage/connect/odbccat.h storage/connect/odbconn.cpp storage/connect/odbconn.h storage/connect/plgdbsem.h storage/connect/plgdbutl.cpp storage/connect/rcmsg.c storage/connect/tabfmt.cpp storage/connect/table.cpp storage/connect/tabodbc.cpp storage/connect/tabodbc.h storage/connect/tabutil.cpp storage/connect/tabwmi.cpp storage/connect/user_connect.cc storage/connect/valblk.cpp storage/connect/valblk.h storage/connect/value.cpp
13 lines
748 B
C
13 lines
748 B
C
/***********************************************************************/
|
|
/* 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, bool info);
|
|
PQRYRES ODBCSrcCols(PGLOBAL g, char *dsn, char *src);
|
|
PQRYRES ODBCTables(PGLOBAL g, char *dsn, char *db, char *tabpat,
|
|
int maxres, bool info);
|
|
PQRYRES ODBCDrivers(PGLOBAL g, int maxres, bool info);
|