⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 config.h

📁 仿照php的mysqli扩展自己使用MySQL的C Interface实现了一个简单的mysql操作类
💻 H
字号:
#ifndef CONFIG_H_#define CONFIG_H_std::string  hostname    = "localhost";std::string  username    = "root";std::string  password    = "31343540";std::string  dbname      = "mysql";unsigned int port        = 3306;std::string  unix_socket = "";unsigned int client_flag = 0; #endif /*CONFIG_H_*/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -