diff options
author | Olivier Bertrand <bertrandop@gmail.com> | 2013-11-06 18:22:09 +0100 |
---|---|---|
committer | Olivier Bertrand <bertrandop@gmail.com> | 2013-11-06 18:22:09 +0100 |
commit | 056f35d0c136af4437344d4fbce80172e6d96817 (patch) | |
tree | 954befda500a4f7b1fb3b6d5b1e814a7077c3d96 /storage/connect/tabodbc.h | |
parent | f1325549e9eca1311435255854da0a93923eff9b (diff) | |
download | mariadb-git-056f35d0c136af4437344d4fbce80172e6d96817.tar.gz |
- Move all enum AMT definitions in one place (plgdbsem.h)
modified:
storage/connect/filamtxt.h
storage/connect/filamzip.h
storage/connect/myconn.h
storage/connect/plgdbsem.h
storage/connect/taboccur.h
storage/connect/tabutil.h
storage/connect/tabxcl.h
- Add the possibility to execute several commands in one query of
an EXECSRC tables (using ...where command in (cmd list);)
modified:
storage/connect/ha_connect.cc
storage/connect/odbconn.cpp
storage/connect/odbconn.h
storage/connect/tabmysql.cpp
storage/connect/tabmysql.h
storage/connect/tabodbc.cpp
storage/connect/tabodbc.h
storage/connect/tabtbl.cpp
storage/connect/tabwmi.cpp
storage/connect/xtable.h
- Enhance retrieving column definitions in discovery:
From SRCDEF adding LIMIT 0 to the executed query
Testing if type, length, and precision are compatible
Making the distinction between CHAR and VARCHAR
modified:
storage/connect/ha_connect.cc
storage/connect/myconn.cpp
storage/connect/mysql-test/connect/r/mysql.result
storage/connect/mysql-test/connect/r/odbc_sqlite3.result
storage/connect/mysql-test/connect/r/odbc_sqlite3_grant.result
storage/connect/myutil.h
storage/connect/myutil.h
storage/connect/odbconn.cpp
storage/connect/value.h
Diffstat (limited to 'storage/connect/tabodbc.h')
-rw-r--r-- | storage/connect/tabodbc.h | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/storage/connect/tabodbc.h b/storage/connect/tabodbc.h index b3577bce5be..f5a3098e843 100644 --- a/storage/connect/tabodbc.h +++ b/storage/connect/tabodbc.h @@ -52,6 +52,7 @@ class DllExport ODBCDEF : public TABDEF { /* Logical table description */ PSZ Qchar; /* Identifier quoting character */ int Catver; /* ODBC version for catalog functions */ int Options; /* Open connection options */ + int Mxr; /* Maxerr for an Exec table */ bool Xsrc; /* Execution type */ }; // end of ODBCDEF @@ -179,12 +180,12 @@ class TDBXDBC : public TDBODBC { friend class XSRCCOL; friend class ODBConn; public: - // Constructor - TDBXDBC(PODEF tdp = NULL) : TDBODBC(tdp) {Cmdcol = NULL;} - TDBXDBC(PTDBXDBC tdbp) : TDBODBC(tdbp) {Cmdcol = tdbp->Cmdcol;} + // Constructors + TDBXDBC(PODEF tdp = NULL); + TDBXDBC(PTDBXDBC tdbp); // Implementation -//virtual AMT GetAmType(void) {return TYPE_AM_ODBC;} + virtual AMT GetAmType(void) {return TYPE_AM_XDBC;} virtual PTDB Duplicate(PGLOBAL g) {return (PTDB)new(g) TDBXDBC(this);} @@ -209,11 +210,14 @@ class TDBXDBC : public TDBODBC { protected: // Internal functions - char *MakeCMD(PGLOBAL g); + PCMD MakeCMD(PGLOBAL g); //bool BindParameters(PGLOBAL g); // Members + PCMD Cmdlist; // The commands to execute char *Cmdcol; // The name of the Xsrc command column + int Mxr; // Maximum errors before closing + int Nerr; // Number of errors so far }; // end of class TDBXDBC /***********************************************************************/ |