发布时间:2016-05-29 09:21:55
注意:要设定编码。点击(此处)折叠或打开#! /usr/bin/env perluse strict;use warnings;use DBI;my $hostname = "xxx";my $database = "xxx";my $us.........【阅读全文】
发布时间:2016-05-19 13:26:47
首先,安装libmysql++。然后,基本用法如下:点击(此处)折叠或打开#include <mysql++.h> #include <iostream> using namespace std;int main(int argc, char *argv[]){ &.........【阅读全文】
发布时间:2016-05-18 09:49:06
首先要安装,apt-get install mysql-server mysql-client然后是配置:1.安装过程中会提示输入root密码。2.编辑/etc/mysql/my.cnf 设定 bind-address = your_address3.编辑/etc/mysql/my.cnf 找到 [mysqld],在下面增加 character_set_server = utf8......【阅读全文】
发布时间:2016-05-18 09:37:18
备份:mysqldump --host ip_address --port 3306 --user user_name --password target_db_name > target_backup_file_name恢复:mysql --host ip_address --port 3306 --user user_name --password target_db_name < target_backup_file_name......【阅读全文】