发布时间:2019-01-23 20:03:27
一、新建用户//登录Mysql@>mysql -u root -p@>密码//创建用户mysql> insert into mysql.user(Host,User,Password)values('localhost','test',password('test123'));//刷新系统权限表mysql>flush privileges;这样就创建了一个名为:test密码为:test123 的用户。二、登录测试mysql>exit;@>mysql -u cplusplus -.........【阅读全文】
发布时间:2014-04-04 17:24:09
1、创建表并写入数据create table student( id int(11), name varchar(45), primary key (id));insert into student values(1, "aa");insert into student values(2, "bb");2.接口使用点击(此处)折叠或打开#include "stdio.h"#include <string.h>#include .........【阅读全文】