#F9执行 F5刷新
#创建数据
create database teacher;
#创建数据(带中文字符集的)
create database teacher character set utf8;
#查看数据库
show databases;
#使用teacher数据库/打开数据库
use teacher;
#删除teacher数据库
drop database teacher;
#创建信息表 primary key主键 auto_increment 自增长
create table xinxi(
id int(4) primary key auto_increment,
name varchar(20) not null,
sex char(1)not null,
age int(3),
salary float(7,2) not null
#des text #简介
);
#查看表
show tables;
#查看表结构(定义)
desc xinxi;
#删除信息表
drop table xinxi;
#birthday datetime
#查询数据
select *from xinxi;
#插入数据
insert into xinxi(name,sex,age,salary) values('A','男',18,9.99);
insert into xinxi(name,sex,age,salary) values('B','女',28,99999.99);
#修改数据
update xinxi set sex='男',salary=999.99 where name='B';
#删除编号为1的人的信息
delete from xinxi where id=1;
Unity 数据库增删查改功能
- 数据库连接
- 在Assets下面创建一个Plugins文件夹
- 把MySql.Data.dll、System.Data.dll、System.Drawing.dll在Plugins下面
- 引入命名空间using MySql.Data.MySqlClient;
- 增删查改操作
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using MySql.Data.MySqlClient;
public class test : MonoBehaviour
{
// Use this for initialization
void Start()
{
Connect();
}
// Update is called once per frame
void Connect()
{
//创建连接对象
string a = "server=localhost;database=teacher;userid=root;password=123456;";
MySqlConnection con = new MySqlConnection(a);
//打开连接
con.Open();
//创建操作指令对象
//string sql = "insert into xinxi(name,sex,age,salary) values('C','男',18,99.93)";
//string sql = "update xinxi set age=21 where name='C'";
// string sql = "delete from xinxi where id=5";
//查询
string sql = "select * from xinxi";
MySqlCommand com = new MySqlCommand(sql, con);
//4.执行操作
// if (com.ExecuteNonQuery()>0)
// {
//print("操作成功!");
// }
// else
// {
//print("操作失败!");
// }
//上方增删改
//下方查
//4.获取读对象
MySqlDataReader reader = com.ExecuteReader();
//5.循环从数据库读取数据
while (reader.Read())
{
int id = reader.GetInt32("id");
string name = reader.GetString("name");
string sex = reader.GetString("sex");
float salary = reader.GetFloat("salary");
print(id+"\t"+name+"\t"+sex+"\t"+salary);
}
//6.关闭(释放)资源
reader.Close();
con.Close();
}
}
?
?
?
?
?
?
|