├── BuildProjects.bat ├── README.md ├── include ├── GarrysMod │ └── Lua │ │ ├── Interface.h │ │ ├── LuaBase.h │ │ ├── Types.h │ │ └── UserData.h ├── linux │ ├── big_endian.h │ ├── byte_order_generic.h │ ├── byte_order_generic_x86.h │ ├── decimal.h │ ├── errmsg.h │ ├── keycache.h │ ├── little_endian.h │ ├── m_ctype.h │ ├── m_string.h │ ├── my_alloc.h │ ├── my_byteorder.h │ ├── my_compiler.h │ ├── my_config.h │ ├── my_dbug.h │ ├── my_dir.h │ ├── my_getopt.h │ ├── my_global.h │ ├── my_list.h │ ├── my_pthread.h │ ├── my_sys.h │ ├── my_xml.h │ ├── mysql.h │ ├── mysql │ │ ├── client_authentication.h │ │ ├── client_plugin.h │ │ ├── client_plugin.h.pp │ │ ├── get_password.h │ │ ├── plugin_auth_common.h │ │ ├── plugin_trace.h │ │ ├── psi │ │ │ ├── mysql_file.h │ │ │ ├── mysql_idle.h │ │ │ ├── mysql_mdl.h │ │ │ ├── mysql_memory.h │ │ │ ├── mysql_ps.h │ │ │ ├── mysql_socket.h │ │ │ ├── mysql_sp.h │ │ │ ├── mysql_stage.h │ │ │ ├── mysql_statement.h │ │ │ ├── mysql_table.h │ │ │ ├── mysql_thread.h │ │ │ ├── mysql_transaction.h │ │ │ ├── psi.h │ │ │ ├── psi_base.h │ │ │ └── psi_memory.h │ │ ├── service_my_snprintf.h │ │ └── service_mysql_alloc.h │ ├── mysql_com.h │ ├── mysql_com_server.h │ ├── mysql_embed.h │ ├── mysql_time.h │ ├── mysql_version.h │ ├── mysqld_ername.h │ ├── mysqld_error.h │ ├── sql_common.h │ ├── sql_state.h │ ├── sslopt-case.h │ ├── sslopt-longopts.h │ ├── sslopt-vars.h │ └── typelib.h └── windows │ ├── big_endian.h │ ├── byte_order_generic.h │ ├── byte_order_generic_x86.h │ ├── decimal.h │ ├── errmsg.h │ ├── keycache.h │ ├── little_endian.h │ ├── m_ctype.h │ ├── m_string.h │ ├── my_alloc.h │ ├── my_byteorder.h │ ├── my_compiler.h │ ├── my_config.h │ ├── my_dbug.h │ ├── my_dir.h │ ├── my_getopt.h │ ├── my_global.h │ ├── my_list.h │ ├── my_pthread.h │ ├── my_sys.h │ ├── my_xml.h │ ├── mysql.h │ ├── mysql │ ├── client_authentication.h │ ├── client_plugin.h │ ├── client_plugin.h.pp │ ├── get_password.h │ ├── plugin_auth_common.h │ ├── plugin_trace.h │ ├── psi │ │ ├── mysql_file.h │ │ ├── mysql_idle.h │ │ ├── mysql_mdl.h │ │ ├── mysql_memory.h │ │ ├── mysql_ps.h │ │ ├── mysql_socket.h │ │ ├── mysql_sp.h │ │ ├── mysql_stage.h │ │ ├── mysql_statement.h │ │ ├── mysql_table.h │ │ ├── mysql_thread.h │ │ ├── mysql_transaction.h │ │ ├── psi.h │ │ ├── psi_base.h │ │ └── psi_memory.h │ ├── service_my_snprintf.h │ └── service_mysql_alloc.h │ ├── mysql_com.h │ ├── mysql_com_server.h │ ├── mysql_embed.h │ ├── mysql_time.h │ ├── mysql_version.h │ ├── mysqld_ername.h │ ├── mysqld_error.h │ ├── sql_common.h │ ├── sql_state.h │ ├── sslopt-case.h │ ├── sslopt-longopts.h │ ├── sslopt-vars.h │ └── typelib.h ├── library ├── linux │ ├── libmysqlclient.a │ └── libmysqlclient_r.a └── windows │ └── mysqlclient.lib ├── mysqloo.lua ├── premake4 ├── premake4.exe ├── premake4.lua └── src ├── database.cpp ├── database.h ├── gm_tmysql.cpp ├── gm_tmysql.h ├── timer.cpp └── timer.h /BuildProjects.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/BuildProjects.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/README.md -------------------------------------------------------------------------------- /include/GarrysMod/Lua/Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/GarrysMod/Lua/Interface.h -------------------------------------------------------------------------------- /include/GarrysMod/Lua/LuaBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/GarrysMod/Lua/LuaBase.h -------------------------------------------------------------------------------- /include/GarrysMod/Lua/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/GarrysMod/Lua/Types.h -------------------------------------------------------------------------------- /include/GarrysMod/Lua/UserData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/GarrysMod/Lua/UserData.h -------------------------------------------------------------------------------- /include/linux/big_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/big_endian.h -------------------------------------------------------------------------------- /include/linux/byte_order_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/byte_order_generic.h -------------------------------------------------------------------------------- /include/linux/byte_order_generic_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/byte_order_generic_x86.h -------------------------------------------------------------------------------- /include/linux/decimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/decimal.h -------------------------------------------------------------------------------- /include/linux/errmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/errmsg.h -------------------------------------------------------------------------------- /include/linux/keycache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/keycache.h -------------------------------------------------------------------------------- /include/linux/little_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/little_endian.h -------------------------------------------------------------------------------- /include/linux/m_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/m_ctype.h -------------------------------------------------------------------------------- /include/linux/m_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/m_string.h -------------------------------------------------------------------------------- /include/linux/my_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/my_alloc.h -------------------------------------------------------------------------------- /include/linux/my_byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/my_byteorder.h -------------------------------------------------------------------------------- /include/linux/my_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/my_compiler.h -------------------------------------------------------------------------------- /include/linux/my_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/my_config.h -------------------------------------------------------------------------------- /include/linux/my_dbug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/my_dbug.h -------------------------------------------------------------------------------- /include/linux/my_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/my_dir.h -------------------------------------------------------------------------------- /include/linux/my_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/my_getopt.h -------------------------------------------------------------------------------- /include/linux/my_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/my_global.h -------------------------------------------------------------------------------- /include/linux/my_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/my_list.h -------------------------------------------------------------------------------- /include/linux/my_pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/my_pthread.h -------------------------------------------------------------------------------- /include/linux/my_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/my_sys.h -------------------------------------------------------------------------------- /include/linux/my_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/my_xml.h -------------------------------------------------------------------------------- /include/linux/mysql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/mysql.h -------------------------------------------------------------------------------- /include/linux/mysql/client_authentication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/mysql/client_authentication.h -------------------------------------------------------------------------------- /include/linux/mysql/client_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/mysql/client_plugin.h -------------------------------------------------------------------------------- /include/linux/mysql/client_plugin.h.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/mysql/client_plugin.h.pp -------------------------------------------------------------------------------- /include/linux/mysql/get_password.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/mysql/get_password.h -------------------------------------------------------------------------------- /include/linux/mysql/plugin_auth_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/mysql/plugin_auth_common.h -------------------------------------------------------------------------------- /include/linux/mysql/plugin_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/mysql/plugin_trace.h -------------------------------------------------------------------------------- /include/linux/mysql/psi/mysql_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/mysql/psi/mysql_file.h -------------------------------------------------------------------------------- /include/linux/mysql/psi/mysql_idle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/mysql/psi/mysql_idle.h -------------------------------------------------------------------------------- /include/linux/mysql/psi/mysql_mdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/mysql/psi/mysql_mdl.h -------------------------------------------------------------------------------- /include/linux/mysql/psi/mysql_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/mysql/psi/mysql_memory.h -------------------------------------------------------------------------------- /include/linux/mysql/psi/mysql_ps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/mysql/psi/mysql_ps.h -------------------------------------------------------------------------------- /include/linux/mysql/psi/mysql_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/mysql/psi/mysql_socket.h -------------------------------------------------------------------------------- /include/linux/mysql/psi/mysql_sp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/mysql/psi/mysql_sp.h -------------------------------------------------------------------------------- /include/linux/mysql/psi/mysql_stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/mysql/psi/mysql_stage.h -------------------------------------------------------------------------------- /include/linux/mysql/psi/mysql_statement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/mysql/psi/mysql_statement.h -------------------------------------------------------------------------------- /include/linux/mysql/psi/mysql_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/mysql/psi/mysql_table.h -------------------------------------------------------------------------------- /include/linux/mysql/psi/mysql_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/mysql/psi/mysql_thread.h -------------------------------------------------------------------------------- /include/linux/mysql/psi/mysql_transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/mysql/psi/mysql_transaction.h -------------------------------------------------------------------------------- /include/linux/mysql/psi/psi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/mysql/psi/psi.h -------------------------------------------------------------------------------- /include/linux/mysql/psi/psi_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/mysql/psi/psi_base.h -------------------------------------------------------------------------------- /include/linux/mysql/psi/psi_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/mysql/psi/psi_memory.h -------------------------------------------------------------------------------- /include/linux/mysql/service_my_snprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/mysql/service_my_snprintf.h -------------------------------------------------------------------------------- /include/linux/mysql/service_mysql_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/mysql/service_mysql_alloc.h -------------------------------------------------------------------------------- /include/linux/mysql_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/mysql_com.h -------------------------------------------------------------------------------- /include/linux/mysql_com_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/mysql_com_server.h -------------------------------------------------------------------------------- /include/linux/mysql_embed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/mysql_embed.h -------------------------------------------------------------------------------- /include/linux/mysql_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/mysql_time.h -------------------------------------------------------------------------------- /include/linux/mysql_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/mysql_version.h -------------------------------------------------------------------------------- /include/linux/mysqld_ername.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/mysqld_ername.h -------------------------------------------------------------------------------- /include/linux/mysqld_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/mysqld_error.h -------------------------------------------------------------------------------- /include/linux/sql_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/sql_common.h -------------------------------------------------------------------------------- /include/linux/sql_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/sql_state.h -------------------------------------------------------------------------------- /include/linux/sslopt-case.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/sslopt-case.h -------------------------------------------------------------------------------- /include/linux/sslopt-longopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/sslopt-longopts.h -------------------------------------------------------------------------------- /include/linux/sslopt-vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/sslopt-vars.h -------------------------------------------------------------------------------- /include/linux/typelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/linux/typelib.h -------------------------------------------------------------------------------- /include/windows/big_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/big_endian.h -------------------------------------------------------------------------------- /include/windows/byte_order_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/byte_order_generic.h -------------------------------------------------------------------------------- /include/windows/byte_order_generic_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/byte_order_generic_x86.h -------------------------------------------------------------------------------- /include/windows/decimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/decimal.h -------------------------------------------------------------------------------- /include/windows/errmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/errmsg.h -------------------------------------------------------------------------------- /include/windows/keycache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/keycache.h -------------------------------------------------------------------------------- /include/windows/little_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/little_endian.h -------------------------------------------------------------------------------- /include/windows/m_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/m_ctype.h -------------------------------------------------------------------------------- /include/windows/m_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/m_string.h -------------------------------------------------------------------------------- /include/windows/my_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/my_alloc.h -------------------------------------------------------------------------------- /include/windows/my_byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/my_byteorder.h -------------------------------------------------------------------------------- /include/windows/my_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/my_compiler.h -------------------------------------------------------------------------------- /include/windows/my_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/my_config.h -------------------------------------------------------------------------------- /include/windows/my_dbug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/my_dbug.h -------------------------------------------------------------------------------- /include/windows/my_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/my_dir.h -------------------------------------------------------------------------------- /include/windows/my_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/my_getopt.h -------------------------------------------------------------------------------- /include/windows/my_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/my_global.h -------------------------------------------------------------------------------- /include/windows/my_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/my_list.h -------------------------------------------------------------------------------- /include/windows/my_pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/my_pthread.h -------------------------------------------------------------------------------- /include/windows/my_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/my_sys.h -------------------------------------------------------------------------------- /include/windows/my_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/my_xml.h -------------------------------------------------------------------------------- /include/windows/mysql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/mysql.h -------------------------------------------------------------------------------- /include/windows/mysql/client_authentication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/mysql/client_authentication.h -------------------------------------------------------------------------------- /include/windows/mysql/client_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/mysql/client_plugin.h -------------------------------------------------------------------------------- /include/windows/mysql/client_plugin.h.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/mysql/client_plugin.h.pp -------------------------------------------------------------------------------- /include/windows/mysql/get_password.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/mysql/get_password.h -------------------------------------------------------------------------------- /include/windows/mysql/plugin_auth_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/mysql/plugin_auth_common.h -------------------------------------------------------------------------------- /include/windows/mysql/plugin_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/mysql/plugin_trace.h -------------------------------------------------------------------------------- /include/windows/mysql/psi/mysql_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/mysql/psi/mysql_file.h -------------------------------------------------------------------------------- /include/windows/mysql/psi/mysql_idle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/mysql/psi/mysql_idle.h -------------------------------------------------------------------------------- /include/windows/mysql/psi/mysql_mdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/mysql/psi/mysql_mdl.h -------------------------------------------------------------------------------- /include/windows/mysql/psi/mysql_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/mysql/psi/mysql_memory.h -------------------------------------------------------------------------------- /include/windows/mysql/psi/mysql_ps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/mysql/psi/mysql_ps.h -------------------------------------------------------------------------------- /include/windows/mysql/psi/mysql_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/mysql/psi/mysql_socket.h -------------------------------------------------------------------------------- /include/windows/mysql/psi/mysql_sp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/mysql/psi/mysql_sp.h -------------------------------------------------------------------------------- /include/windows/mysql/psi/mysql_stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/mysql/psi/mysql_stage.h -------------------------------------------------------------------------------- /include/windows/mysql/psi/mysql_statement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/mysql/psi/mysql_statement.h -------------------------------------------------------------------------------- /include/windows/mysql/psi/mysql_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/mysql/psi/mysql_table.h -------------------------------------------------------------------------------- /include/windows/mysql/psi/mysql_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/mysql/psi/mysql_thread.h -------------------------------------------------------------------------------- /include/windows/mysql/psi/mysql_transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/mysql/psi/mysql_transaction.h -------------------------------------------------------------------------------- /include/windows/mysql/psi/psi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/mysql/psi/psi.h -------------------------------------------------------------------------------- /include/windows/mysql/psi/psi_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/mysql/psi/psi_base.h -------------------------------------------------------------------------------- /include/windows/mysql/psi/psi_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/mysql/psi/psi_memory.h -------------------------------------------------------------------------------- /include/windows/mysql/service_my_snprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/mysql/service_my_snprintf.h -------------------------------------------------------------------------------- /include/windows/mysql/service_mysql_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/mysql/service_mysql_alloc.h -------------------------------------------------------------------------------- /include/windows/mysql_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/mysql_com.h -------------------------------------------------------------------------------- /include/windows/mysql_com_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/mysql_com_server.h -------------------------------------------------------------------------------- /include/windows/mysql_embed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/mysql_embed.h -------------------------------------------------------------------------------- /include/windows/mysql_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/mysql_time.h -------------------------------------------------------------------------------- /include/windows/mysql_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/mysql_version.h -------------------------------------------------------------------------------- /include/windows/mysqld_ername.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/mysqld_ername.h -------------------------------------------------------------------------------- /include/windows/mysqld_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/mysqld_error.h -------------------------------------------------------------------------------- /include/windows/sql_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/sql_common.h -------------------------------------------------------------------------------- /include/windows/sql_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/sql_state.h -------------------------------------------------------------------------------- /include/windows/sslopt-case.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/sslopt-case.h -------------------------------------------------------------------------------- /include/windows/sslopt-longopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/sslopt-longopts.h -------------------------------------------------------------------------------- /include/windows/sslopt-vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/sslopt-vars.h -------------------------------------------------------------------------------- /include/windows/typelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/include/windows/typelib.h -------------------------------------------------------------------------------- /library/linux/libmysqlclient.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/library/linux/libmysqlclient.a -------------------------------------------------------------------------------- /library/linux/libmysqlclient_r.a: -------------------------------------------------------------------------------- 1 | IntxLNKlibmysqlclient.a -------------------------------------------------------------------------------- /library/windows/mysqlclient.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/library/windows/mysqlclient.lib -------------------------------------------------------------------------------- /mysqloo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/mysqloo.lua -------------------------------------------------------------------------------- /premake4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/premake4 -------------------------------------------------------------------------------- /premake4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/premake4.exe -------------------------------------------------------------------------------- /premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/premake4.lua -------------------------------------------------------------------------------- /src/database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/src/database.cpp -------------------------------------------------------------------------------- /src/database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/src/database.h -------------------------------------------------------------------------------- /src/gm_tmysql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/src/gm_tmysql.cpp -------------------------------------------------------------------------------- /src/gm_tmysql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/src/gm_tmysql.h -------------------------------------------------------------------------------- /src/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/src/timer.cpp -------------------------------------------------------------------------------- /src/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkacjios/gm_tmysql4/HEAD/src/timer.h --------------------------------------------------------------------------------