摘要:
查看SUSE版本信息 1、cat /proc/version 内核版本 #cat /proc/version 2、uname -a 内核版本 3、lsb_release -a 发行版本 4、cat /etc/SuSE-release 可以看到补丁版本 查看mysql版本信息 ~]$ mysql -V mysql> status; ~]$ mysql --help | grep Distrib m... 阅读全文
摘要:
今天写了个简单的mysql程序,通过C语言。示例代码View Code #include "stdio.h"#include "mysql.h"#include <pthread.h>#include "stdlib.h"#include "string"#include "iostream"using namespace std;typedef struct SqlInfo{ string server; string user; string passwd; string db; 阅读全文