├── .gitignore ├── .gitmodules ├── README.md ├── include ├── GarrysMod │ └── Lua │ │ ├── Interface.h │ │ ├── LuaBase.h │ │ ├── SourceCompat.h │ │ ├── Types.h │ │ └── UserData.h └── connector │ ├── config.h │ ├── errmsg.h │ ├── ma_common.h │ ├── ma_compress.h │ ├── ma_config.h │ ├── ma_context.h │ ├── ma_crypt.h │ ├── ma_decimal.h │ ├── ma_global.h │ ├── ma_hash.h │ ├── ma_hashtbl.h │ ├── ma_list.h │ ├── ma_priv.h │ ├── ma_pthread.h │ ├── ma_pvio.h │ ├── ma_server_error.h │ ├── ma_sha1.h │ ├── ma_string.h │ ├── ma_sys.h │ ├── ma_tls.h │ ├── mariadb │ └── ma_io.h │ ├── mariadb_async.h │ ├── mariadb_com.h │ ├── mariadb_ctype.h │ ├── mariadb_dyncol.h │ ├── mariadb_rpl.h │ ├── mariadb_stmt.h │ ├── mariadb_version.h │ ├── mysql.h │ ├── mysql │ ├── client_plugin.h │ └── plugin_auth.h │ └── mysqld_error.h ├── library ├── x64 │ ├── libmariadbclient.a │ └── mariadbclient.lib └── x86 │ ├── libmariadbclient.a │ └── mariadbclient.lib ├── projects ├── buildproject-linux.sh ├── buildproject-windows.bat ├── get-commit-hash.bat ├── get-commit-hash.sh ├── premake5 ├── premake5.exe └── premake5.lua └── src ├── database.cpp ├── database.h ├── databaseaction.cpp ├── databaseaction.h ├── generated_git_commit_hash.h ├── main.cpp ├── main.h ├── query.h ├── result.cpp ├── result.h ├── statement.cpp ├── statement.h ├── timer.h ├── tmysql.cpp ├── tmysql.h └── zlib ├── adler32.c ├── compress.c ├── crc32.c ├── crc32.h ├── deflate.c ├── deflate.h ├── gzclose.c ├── gzguts.h ├── gzlib.c ├── gzread.c ├── gzwrite.c ├── infback.c ├── inffast.c ├── inffast.h ├── inffixed.h ├── inflate.c ├── inflate.h ├── inftrees.c ├── inftrees.h ├── trees.c ├── trees.h ├── uncompr.c ├── zconf.h ├── zlib.h ├── zutil.c └── zutil.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/README.md -------------------------------------------------------------------------------- /include/GarrysMod/Lua/Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/GarrysMod/Lua/Interface.h -------------------------------------------------------------------------------- /include/GarrysMod/Lua/LuaBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/GarrysMod/Lua/LuaBase.h -------------------------------------------------------------------------------- /include/GarrysMod/Lua/SourceCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/GarrysMod/Lua/SourceCompat.h -------------------------------------------------------------------------------- /include/GarrysMod/Lua/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/GarrysMod/Lua/Types.h -------------------------------------------------------------------------------- /include/GarrysMod/Lua/UserData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/GarrysMod/Lua/UserData.h -------------------------------------------------------------------------------- /include/connector/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/connector/config.h -------------------------------------------------------------------------------- /include/connector/errmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/connector/errmsg.h -------------------------------------------------------------------------------- /include/connector/ma_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/connector/ma_common.h -------------------------------------------------------------------------------- /include/connector/ma_compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/connector/ma_compress.h -------------------------------------------------------------------------------- /include/connector/ma_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/connector/ma_config.h -------------------------------------------------------------------------------- /include/connector/ma_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/connector/ma_context.h -------------------------------------------------------------------------------- /include/connector/ma_crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/connector/ma_crypt.h -------------------------------------------------------------------------------- /include/connector/ma_decimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/connector/ma_decimal.h -------------------------------------------------------------------------------- /include/connector/ma_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/connector/ma_global.h -------------------------------------------------------------------------------- /include/connector/ma_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/connector/ma_hash.h -------------------------------------------------------------------------------- /include/connector/ma_hashtbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/connector/ma_hashtbl.h -------------------------------------------------------------------------------- /include/connector/ma_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/connector/ma_list.h -------------------------------------------------------------------------------- /include/connector/ma_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/connector/ma_priv.h -------------------------------------------------------------------------------- /include/connector/ma_pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/connector/ma_pthread.h -------------------------------------------------------------------------------- /include/connector/ma_pvio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/connector/ma_pvio.h -------------------------------------------------------------------------------- /include/connector/ma_server_error.h: -------------------------------------------------------------------------------- 1 | /* This file exists for compatibility only */ 2 | #include "mysqld_error.h" 3 | -------------------------------------------------------------------------------- /include/connector/ma_sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/connector/ma_sha1.h -------------------------------------------------------------------------------- /include/connector/ma_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/connector/ma_string.h -------------------------------------------------------------------------------- /include/connector/ma_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/connector/ma_sys.h -------------------------------------------------------------------------------- /include/connector/ma_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/connector/ma_tls.h -------------------------------------------------------------------------------- /include/connector/mariadb/ma_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/connector/mariadb/ma_io.h -------------------------------------------------------------------------------- /include/connector/mariadb_async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/connector/mariadb_async.h -------------------------------------------------------------------------------- /include/connector/mariadb_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/connector/mariadb_com.h -------------------------------------------------------------------------------- /include/connector/mariadb_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/connector/mariadb_ctype.h -------------------------------------------------------------------------------- /include/connector/mariadb_dyncol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/connector/mariadb_dyncol.h -------------------------------------------------------------------------------- /include/connector/mariadb_rpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/connector/mariadb_rpl.h -------------------------------------------------------------------------------- /include/connector/mariadb_stmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/connector/mariadb_stmt.h -------------------------------------------------------------------------------- /include/connector/mariadb_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/connector/mariadb_version.h -------------------------------------------------------------------------------- /include/connector/mysql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/connector/mysql.h -------------------------------------------------------------------------------- /include/connector/mysql/client_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/connector/mysql/client_plugin.h -------------------------------------------------------------------------------- /include/connector/mysql/plugin_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/connector/mysql/plugin_auth.h -------------------------------------------------------------------------------- /include/connector/mysqld_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/include/connector/mysqld_error.h -------------------------------------------------------------------------------- /library/x64/libmariadbclient.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/library/x64/libmariadbclient.a -------------------------------------------------------------------------------- /library/x64/mariadbclient.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/library/x64/mariadbclient.lib -------------------------------------------------------------------------------- /library/x86/libmariadbclient.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/library/x86/libmariadbclient.a -------------------------------------------------------------------------------- /library/x86/mariadbclient.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/library/x86/mariadbclient.lib -------------------------------------------------------------------------------- /projects/buildproject-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/projects/buildproject-linux.sh -------------------------------------------------------------------------------- /projects/buildproject-windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/projects/buildproject-windows.bat -------------------------------------------------------------------------------- /projects/get-commit-hash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/projects/get-commit-hash.bat -------------------------------------------------------------------------------- /projects/get-commit-hash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/projects/get-commit-hash.sh -------------------------------------------------------------------------------- /projects/premake5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/projects/premake5 -------------------------------------------------------------------------------- /projects/premake5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/projects/premake5.exe -------------------------------------------------------------------------------- /projects/premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/projects/premake5.lua -------------------------------------------------------------------------------- /src/database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/database.cpp -------------------------------------------------------------------------------- /src/database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/database.h -------------------------------------------------------------------------------- /src/databaseaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/databaseaction.cpp -------------------------------------------------------------------------------- /src/databaseaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/databaseaction.h -------------------------------------------------------------------------------- /src/generated_git_commit_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/generated_git_commit_hash.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/main.h -------------------------------------------------------------------------------- /src/query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/query.h -------------------------------------------------------------------------------- /src/result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/result.cpp -------------------------------------------------------------------------------- /src/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/result.h -------------------------------------------------------------------------------- /src/statement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/statement.cpp -------------------------------------------------------------------------------- /src/statement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/statement.h -------------------------------------------------------------------------------- /src/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/timer.h -------------------------------------------------------------------------------- /src/tmysql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/tmysql.cpp -------------------------------------------------------------------------------- /src/tmysql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/tmysql.h -------------------------------------------------------------------------------- /src/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/zlib/adler32.c -------------------------------------------------------------------------------- /src/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/zlib/compress.c -------------------------------------------------------------------------------- /src/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/zlib/crc32.c -------------------------------------------------------------------------------- /src/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/zlib/crc32.h -------------------------------------------------------------------------------- /src/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/zlib/deflate.c -------------------------------------------------------------------------------- /src/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/zlib/deflate.h -------------------------------------------------------------------------------- /src/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/zlib/gzclose.c -------------------------------------------------------------------------------- /src/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/zlib/gzguts.h -------------------------------------------------------------------------------- /src/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/zlib/gzlib.c -------------------------------------------------------------------------------- /src/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/zlib/gzread.c -------------------------------------------------------------------------------- /src/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/zlib/gzwrite.c -------------------------------------------------------------------------------- /src/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/zlib/infback.c -------------------------------------------------------------------------------- /src/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/zlib/inffast.c -------------------------------------------------------------------------------- /src/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/zlib/inffast.h -------------------------------------------------------------------------------- /src/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/zlib/inffixed.h -------------------------------------------------------------------------------- /src/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/zlib/inflate.c -------------------------------------------------------------------------------- /src/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/zlib/inflate.h -------------------------------------------------------------------------------- /src/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/zlib/inftrees.c -------------------------------------------------------------------------------- /src/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/zlib/inftrees.h -------------------------------------------------------------------------------- /src/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/zlib/trees.c -------------------------------------------------------------------------------- /src/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/zlib/trees.h -------------------------------------------------------------------------------- /src/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/zlib/uncompr.c -------------------------------------------------------------------------------- /src/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/zlib/zconf.h -------------------------------------------------------------------------------- /src/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/zlib/zlib.h -------------------------------------------------------------------------------- /src/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/zlib/zutil.c -------------------------------------------------------------------------------- /src/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperiorServers/gm_tmysql4/HEAD/src/zlib/zutil.h --------------------------------------------------------------------------------