mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 18:20:07 +01:00
94e5d7de85
modified: storage/connect/CMakeLists.txt modified: storage/connect/JavaWrappers.jar modified: storage/connect/colblk.h modified: storage/connect/filter.cpp modified: storage/connect/filter.h modified: storage/connect/ha_connect.cc modified: storage/connect/ha_connect.h modified: storage/connect/jdbccat.h modified: storage/connect/jdbconn.cpp modified: storage/connect/jdbconn.h modified: storage/connect/mongofam.cpp modified: storage/connect/mongofam.h modified: storage/connect/mycat.cc modified: storage/connect/mycat.h modified: storage/connect/tabext.h modified: storage/connect/tabjdbc.cpp modified: storage/connect/tabjdbc.h modified: storage/connect/tabjson.cpp modified: storage/connect/tabjson.h modified: storage/connect/tabmgo.cpp modified: storage/connect/tabmgo.h created: storage/connect/Mongo2Interface.java created: storage/connect/Mongo3Interface.java created: storage/connect/cmgoconn.cpp created: storage/connect/cmgoconn.h created: storage/connect/javaconn.cpp created: storage/connect/javaconn.h created: storage/connect/jmgfam.cpp created: storage/connect/jmgfam.h created: storage/connect/jmgoconn.cpp created: storage/connect/jmgoconn.h created: storage/connect/mongo.cpp created: storage/connect/mongo.h created: storage/connect/tabjmg.cpp created: storage/connect/tabjmg.h - tdbp not initialized when catched exception in CntGetTDB (connect.cc line 188) modified: storage/connect/connect.h - CheckCleanup should sometimes doing cleanup on pure info Sometimes MariaDB loops on info to get the size of all tables in a database. This can sometimes fail by exhausted memory. CheckCleanup now have a force boolean parameter (defaulting to false) modified: storage/connect/ha_connect.cc modified: storage/connect/user_connect.cc modified: storage/connect/user_connect.h Change the copyright of some source files modified: storage/connect/connect.cc modified: storage/connect/connect.h modified: storage/connect/engmsg.h modified: storage/connect/global.h modified: storage/connect/ha_connect.cc modified: storage/connect/ha_connect.h modified: storage/connect/msgid.h modified: storage/connect/mycat.cc modified: storage/connect/mycat.h modified: storage/connect/os.h modified: storage/connect/osutil.c modified: storage/connect/osutil.h modified: storage/connect/user_connect.cc modified: storage/connect/user_connect.h
35 lines
1.4 KiB
C
35 lines
1.4 KiB
C
#ifndef __JDBCCAT_H
|
|
#define __JDBCCAT_H
|
|
|
|
// Timeout and net wait defaults
|
|
#define DEFAULT_LOGIN_TIMEOUT -1 // means do not set
|
|
#define DEFAULT_QUERY_TIMEOUT -1 // means do not set
|
|
|
|
typedef struct jdbc_parms {
|
|
int CheckSize(int rows);
|
|
PCSZ Driver; // JDBC driver
|
|
PCSZ Url; // Driver URL
|
|
PCSZ User; // User connect info
|
|
PCSZ Pwd; // Password connect info
|
|
//int Cto; // Connect timeout
|
|
//int Qto; // Query timeout
|
|
int Version; // Driver version
|
|
int Fsize; // Fetch size
|
|
bool Scrollable; // Scrollable cursor
|
|
} JDBCPARM, *PJPARM;
|
|
|
|
/***********************************************************************/
|
|
/* JDBC catalog function prototypes. */
|
|
/***********************************************************************/
|
|
#if defined(PROMPT_OK)
|
|
char *JDBCCheckConnection(PGLOBAL g, PCSZ dsn, int cop);
|
|
#endif // PROMPT_OK
|
|
//PQRYRES JDBCDataSources(PGLOBAL g, int maxres, bool info);
|
|
PQRYRES JDBCColumns(PGLOBAL g, PCSZ db, PCSZ table,
|
|
PCSZ colpat, int maxres, bool info, PJPARM sop);
|
|
PQRYRES JDBCSrcCols(PGLOBAL g, PCSZ src, PJPARM sop);
|
|
PQRYRES JDBCTables(PGLOBAL g, PCSZ db, PCSZ tabpat,
|
|
PCSZ tabtyp, int maxres, bool info, PJPARM sop);
|
|
PQRYRES JDBCDrivers(PGLOBAL g, int maxres, bool info);
|
|
|
|
#endif // __JDBCCAT_H
|