码迷,mamicode.com
首页 > 其他好文 > 详细

十二、异步_实践

时间:2019-04-28 14:14:16      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:var   操作   ima   har   frame   ide   serve   val   value   

 

一、线程实践步骤

建立数据表 提供两个版本Mysql和sqlserver 两种

 

create database Shop 
go
use Shop
go

create table Phone
(
	Id int primary key identity(1,1),
	Phone varchar(32),
	PCount int
)


insert into Phone values(‘vivo nex‘,3)

select * from Phone


create table User_X_Phone
(
	Id int primary key identity(1,1),
	PhoneId int,
	UserId varchar(64)
)


select * from Phone
select * from User_X_Phone

truncate table Phone
truncate table User_X_Phone
insert into Phone values(‘vivo nex‘,3)

  SqlServer版本的

 

create database Shop 
go
use Shop
go

CREATE TABLE Phone (
	Id int PRIMARY KEY AUTO_INCREMENT,
	Phone varchar(32),
	PCount int
)

INSERT INTO `Phone` (`Id`, `Phone`, `PCount`) VALUES (NULL, ‘vivo nex‘, ‘3‘);

select * from Phone


create table User_X_Phone
(
	Id int PRIMARY KEY AUTO_INCREMENT,
	PhoneId int,
	UserId varchar(64)
)


select * from Phone
select * from User_X_Phone

truncate table Phone
truncate table User_X_Phone
insert into Phone values(‘vivo nex‘,3)

  MySql版本

 

二、项目创建 我们使用FrameWork构建的控制台项目操作。

技术图片

添加链接字符串

技术图片

 

十二、异步_实践

标签:var   操作   ima   har   frame   ide   serve   val   value   

原文地址:https://www.cnblogs.com/fger/p/10783567.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!