GZFramwork数据库层《前言》Demo简介
本系列旨在熟悉GZFramwork数据库层操作,对数据库表进行增删改查,单据编号生成等:
详细见图:

普通单表操作:





数据库建模:

创建表脚本:
if exists (select 1
from sys.sysreferences r join sys.sysobjects o on (o.id = r.constid and o.type = 'F')
where r.fkeyid = object_id('tb_CustomerDetail') and o.name = 'FK_TB_CUSTO_REFERENCE_TB_CUSTO')
alter table tb_CustomerDetail
drop constraint FK_TB_CUSTO_REFERENCE_TB_CUSTO
go if exists (select 1
from sys.sysreferences r join sys.sysobjects o on (o.id = r.constid and o.type = 'F')
where r.fkeyid = object_id('tb_DictionaryDetail') and o.name = 'FK_TB_DICTI_REFERENCE_TB_DICTI')
alter table tb_DictionaryDetail
drop constraint FK_TB_DICTI_REFERENCE_TB_DICTI
go if exists (select 1
from sys.sysreferences r join sys.sysobjects o on (o.id = r.constid and o.type = 'F')
where r.fkeyid = object_id('tb_EmployeeCon') and o.name = 'FK_TB_EMPLO_REFERENCE_TB_EMPLO')
alter table tb_EmployeeCon
drop constraint FK_TB_EMPLO_REFERENCE_TB_EMPLO
go if exists (select 1
from sysobjects
where id = object_id('_tmp')
and type = 'U')
drop table _tmp
go if exists (select 1
from sysobjects
where id = object_id('tb_Customer')
and type = 'U')
drop table tb_Customer
go if exists (select 1
from sysobjects
where id = object_id('tb_CustomerDetail')
and type = 'U')
drop table tb_CustomerDetail
go if exists (select 1
from sysobjects
where id = object_id('tb_Dictionary')
and type = 'U')
drop table tb_Dictionary
go if exists (select 1
from sysobjects
where id = object_id('tb_DictionaryDetail')
and type = 'U')
drop table tb_DictionaryDetail
go if exists (select 1
from sysobjects
where id = object_id('tb_EmpLeave')
and type = 'U')
drop table tb_EmpLeave
go if exists (select 1
from sysobjects
where id = object_id('tb_Employee')
and type = 'U')
drop table tb_Employee
go if exists (select 1
from sysobjects
where id = object_id('tb_EmployeeCon')
and type = 'U')
drop table tb_EmployeeCon
go if exists (select 1
from sysobjects
where id = object_id('tb_MyUser')
and type = 'U')
drop table tb_MyUser
go /*==============================================================*/
/* Table: _tmp */
/*==============================================================*/
create table _tmp (
isid int identity(1,1) not for replication,
CreateUser varchar(20) null,
CreateDate datetime null,
LastUpdateUser varchar(20) null,
LastUpdateDate datetime null
)
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'表公共字段',
'user', @CurrentUser, 'table', '_tmp'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'自增列',
'user', @CurrentUser, 'table', '_tmp', 'column', 'isid'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'创建人',
'user', @CurrentUser, 'table', '_tmp', 'column', 'CreateUser'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'创建日期',
'user', @CurrentUser, 'table', '_tmp', 'column', 'CreateDate'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'修改人',
'user', @CurrentUser, 'table', '_tmp', 'column', 'LastUpdateUser'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'修改日期',
'user', @CurrentUser, 'table', '_tmp', 'column', 'LastUpdateDate'
go /*==============================================================*/
/* Table: tb_Customer */
/*==============================================================*/
create table tb_Customer (
isid int identity(1,1) not for replication,
CustomerCode varchar(20) not null,
CustomerName varchar(50) null,
Adress nvarchar(100) null,
CreateUser varchar(20) null,
CreateDate datetime null,
LastUpdateUser varchar(20) null,
LastUpdateDate datetime null,
constraint PK_TB_CUSTOMER primary key (CustomerCode)
)
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'客户',
'user', @CurrentUser, 'table', 'tb_Customer'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'自增列',
'user', @CurrentUser, 'table', 'tb_Customer', 'column', 'isid'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'客户编号',
'user', @CurrentUser, 'table', 'tb_Customer', 'column', 'CustomerCode'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'客户名称',
'user', @CurrentUser, 'table', 'tb_Customer', 'column', 'CustomerName'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'地址',
'user', @CurrentUser, 'table', 'tb_Customer', 'column', 'Adress'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'创建人',
'user', @CurrentUser, 'table', 'tb_Customer', 'column', 'CreateUser'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'创建日期',
'user', @CurrentUser, 'table', 'tb_Customer', 'column', 'CreateDate'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'修改人',
'user', @CurrentUser, 'table', 'tb_Customer', 'column', 'LastUpdateUser'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'修改日期',
'user', @CurrentUser, 'table', 'tb_Customer', 'column', 'LastUpdateDate'
go /*==============================================================*/
/* Table: tb_CustomerDetail */
/*==============================================================*/
create table tb_CustomerDetail (
isid int identity(1,1) not for replication,
CustomerCode varchar(20) null,
CustomerAttribute varchar(50) null,
CustomerATValue nvarchar(100) null,
CreateUser varchar(20) null,
CreateDate datetime null,
LastUpdateUser varchar(20) null,
LastUpdateDate datetime null,
constraint PK_TB_CUSTOMERDETAIL primary key (isid)
)
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'客户明细',
'user', @CurrentUser, 'table', 'tb_CustomerDetail'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'自增列',
'user', @CurrentUser, 'table', 'tb_CustomerDetail', 'column', 'isid'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'客户编号',
'user', @CurrentUser, 'table', 'tb_CustomerDetail', 'column', 'CustomerCode'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'属性',
'user', @CurrentUser, 'table', 'tb_CustomerDetail', 'column', 'CustomerAttribute'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'属性值',
'user', @CurrentUser, 'table', 'tb_CustomerDetail', 'column', 'CustomerATValue'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'创建人',
'user', @CurrentUser, 'table', 'tb_CustomerDetail', 'column', 'CreateUser'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'创建日期',
'user', @CurrentUser, 'table', 'tb_CustomerDetail', 'column', 'CreateDate'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'修改人',
'user', @CurrentUser, 'table', 'tb_CustomerDetail', 'column', 'LastUpdateUser'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'修改日期',
'user', @CurrentUser, 'table', 'tb_CustomerDetail', 'column', 'LastUpdateDate'
go /*==============================================================*/
/* Table: tb_Dictionary */
/*==============================================================*/
create table tb_Dictionary (
TypeID varchar(10) not null,
TypeName varchar(20) null,
Remark varchar(200) null,
isid int identity(1,1) not for replication,
CreateUser varchar(20) null,
CreateDate datetime null,
LastUpdateUser varchar(20) null,
LastUpdateDate datetime null,
constraint PK_TB_DICTIONARY primary key (TypeID)
)
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'数据字典主表',
'user', @CurrentUser, 'table', 'tb_Dictionary'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'类别编号',
'user', @CurrentUser, 'table', 'tb_Dictionary', 'column', 'TypeID'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'类别名称',
'user', @CurrentUser, 'table', 'tb_Dictionary', 'column', 'TypeName'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'备注',
'user', @CurrentUser, 'table', 'tb_Dictionary', 'column', 'Remark'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'自增列',
'user', @CurrentUser, 'table', 'tb_Dictionary', 'column', 'isid'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'创建人',
'user', @CurrentUser, 'table', 'tb_Dictionary', 'column', 'CreateUser'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'创建日期',
'user', @CurrentUser, 'table', 'tb_Dictionary', 'column', 'CreateDate'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'修改人',
'user', @CurrentUser, 'table', 'tb_Dictionary', 'column', 'LastUpdateUser'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'修改日期',
'user', @CurrentUser, 'table', 'tb_Dictionary', 'column', 'LastUpdateDate'
go /*==============================================================*/
/* Table: tb_DictionaryDetail */
/*==============================================================*/
create table tb_DictionaryDetail (
isid int identity(1,1) not for replication,
TypeID varchar(10) null,
DataCode varchar(10) null,
DataName varchar(20) null,
CreateUser varchar(20) null,
CreateDate datetime null,
LastUpdateUser varchar(20) null,
LastUpdateDate datetime null,
constraint PK_TB_DICTIONARYDETAIL primary key (isid)
)
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'数据字典明细',
'user', @CurrentUser, 'table', 'tb_DictionaryDetail'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'自增列',
'user', @CurrentUser, 'table', 'tb_DictionaryDetail', 'column', 'isid'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'类别编号',
'user', @CurrentUser, 'table', 'tb_DictionaryDetail', 'column', 'TypeID'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'编号',
'user', @CurrentUser, 'table', 'tb_DictionaryDetail', 'column', 'DataCode'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'字典名称',
'user', @CurrentUser, 'table', 'tb_DictionaryDetail', 'column', 'DataName'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'创建人',
'user', @CurrentUser, 'table', 'tb_DictionaryDetail', 'column', 'CreateUser'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'创建日期',
'user', @CurrentUser, 'table', 'tb_DictionaryDetail', 'column', 'CreateDate'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'修改人',
'user', @CurrentUser, 'table', 'tb_DictionaryDetail', 'column', 'LastUpdateUser'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'修改日期',
'user', @CurrentUser, 'table', 'tb_DictionaryDetail', 'column', 'LastUpdateDate'
go /*==============================================================*/
/* Table: tb_EmpLeave */
/*==============================================================*/
create table tb_EmpLeave (
isid int identity(1,1) not for replication,
DocNo varchar(20) not null,
EmpName varchar(20) null,
BeginDate datetime null,
EndDate datetime null,
CreateUser varchar(20) null,
CreateDate datetime null,
LastUpdateUser varchar(20) null,
LastUpdateDate datetime null,
constraint PK_TB_EMPLEAVE primary key (DocNo)
)
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'请假记录',
'user', @CurrentUser, 'table', 'tb_EmpLeave'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'自增列',
'user', @CurrentUser, 'table', 'tb_EmpLeave', 'column', 'isid'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'请假单号',
'user', @CurrentUser, 'table', 'tb_EmpLeave', 'column', 'DocNo'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'请假人',
'user', @CurrentUser, 'table', 'tb_EmpLeave', 'column', 'EmpName'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'请假开始日期',
'user', @CurrentUser, 'table', 'tb_EmpLeave', 'column', 'BeginDate'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'请假结束日期',
'user', @CurrentUser, 'table', 'tb_EmpLeave', 'column', 'EndDate'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'创建人',
'user', @CurrentUser, 'table', 'tb_EmpLeave', 'column', 'CreateUser'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'创建日期',
'user', @CurrentUser, 'table', 'tb_EmpLeave', 'column', 'CreateDate'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'修改人',
'user', @CurrentUser, 'table', 'tb_EmpLeave', 'column', 'LastUpdateUser'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'修改日期',
'user', @CurrentUser, 'table', 'tb_EmpLeave', 'column', 'LastUpdateDate'
go /*==============================================================*/
/* Table: tb_Employee */
/*==============================================================*/
create table tb_Employee (
isid int identity(1,1) not for replication,
InfoID varchar(10) not null,
EmpName varchar(20) null,
Sex varchar(2) null,
Age int null,
CreateUser varchar(20) null,
CreateDate datetime null,
LastUpdateUser varchar(20) null,
LastUpdateDate datetime null,
constraint PK_TB_EMPLOYEE primary key (InfoID)
)
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'员工表',
'user', @CurrentUser, 'table', 'tb_Employee'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'自增列',
'user', @CurrentUser, 'table', 'tb_Employee', 'column', 'isid'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'员工编号',
'user', @CurrentUser, 'table', 'tb_Employee', 'column', 'InfoID'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'姓名',
'user', @CurrentUser, 'table', 'tb_Employee', 'column', 'EmpName'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'性别',
'user', @CurrentUser, 'table', 'tb_Employee', 'column', 'Sex'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'年龄',
'user', @CurrentUser, 'table', 'tb_Employee', 'column', 'Age'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'创建人',
'user', @CurrentUser, 'table', 'tb_Employee', 'column', 'CreateUser'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'创建日期',
'user', @CurrentUser, 'table', 'tb_Employee', 'column', 'CreateDate'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'修改人',
'user', @CurrentUser, 'table', 'tb_Employee', 'column', 'LastUpdateUser'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'修改日期',
'user', @CurrentUser, 'table', 'tb_Employee', 'column', 'LastUpdateDate'
go /*==============================================================*/
/* Table: tb_EmployeeCon */
/*==============================================================*/
create table tb_EmployeeCon (
isid int identity(1,1) not for replication,
InfoID varchar(10) null,
ConNo varchar(10) not null,
BeginDate datetime null,
EndDate datetime null,
Salary int null,
CreateUser varchar(20) null,
CreateDate datetime null,
LastUpdateUser varchar(20) null,
LastUpdateDate datetime null,
constraint PK_TB_EMPLOYEECON primary key nonclustered (ConNo)
)
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'员工合同表',
'user', @CurrentUser, 'table', 'tb_EmployeeCon'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'自增列',
'user', @CurrentUser, 'table', 'tb_EmployeeCon', 'column', 'isid'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'员工编号',
'user', @CurrentUser, 'table', 'tb_EmployeeCon', 'column', 'InfoID'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'合同编号',
'user', @CurrentUser, 'table', 'tb_EmployeeCon', 'column', 'ConNo'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'合同开始日期',
'user', @CurrentUser, 'table', 'tb_EmployeeCon', 'column', 'BeginDate'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'合同结束日期',
'user', @CurrentUser, 'table', 'tb_EmployeeCon', 'column', 'EndDate'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'最低工资',
'user', @CurrentUser, 'table', 'tb_EmployeeCon', 'column', 'Salary'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'创建人',
'user', @CurrentUser, 'table', 'tb_EmployeeCon', 'column', 'CreateUser'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'创建日期',
'user', @CurrentUser, 'table', 'tb_EmployeeCon', 'column', 'CreateDate'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'修改人',
'user', @CurrentUser, 'table', 'tb_EmployeeCon', 'column', 'LastUpdateUser'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'修改日期',
'user', @CurrentUser, 'table', 'tb_EmployeeCon', 'column', 'LastUpdateDate'
go /*==============================================================*/
/* Table: tb_MyUser */
/*==============================================================*/
create table tb_MyUser (
isid int identity(1,1) not for replication,
Account varchar(20) not null,
UserName varchar(20) null,
PetName varchar(20) null,
CreateUser varchar(20) null,
CreateDate datetime null,
LastUpdateUser varchar(20) null,
LastUpdateDate datetime null,
constraint PK_TB_MYUSER primary key (Account)
)
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'用户表',
'user', @CurrentUser, 'table', 'tb_MyUser'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'自增列',
'user', @CurrentUser, 'table', 'tb_MyUser', 'column', 'isid'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'用户账号',
'user', @CurrentUser, 'table', 'tb_MyUser', 'column', 'Account'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'用户名称',
'user', @CurrentUser, 'table', 'tb_MyUser', 'column', 'UserName'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'昵称',
'user', @CurrentUser, 'table', 'tb_MyUser', 'column', 'PetName'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'创建人',
'user', @CurrentUser, 'table', 'tb_MyUser', 'column', 'CreateUser'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'创建日期',
'user', @CurrentUser, 'table', 'tb_MyUser', 'column', 'CreateDate'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'修改人',
'user', @CurrentUser, 'table', 'tb_MyUser', 'column', 'LastUpdateUser'
go declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'修改日期',
'user', @CurrentUser, 'table', 'tb_MyUser', 'column', 'LastUpdateDate'
go alter table tb_CustomerDetail
add constraint FK_TB_CUSTO_REFERENCE_TB_CUSTO foreign key (CustomerCode)
references tb_Customer (CustomerCode)
go alter table tb_DictionaryDetail
add constraint FK_TB_DICTI_REFERENCE_TB_DICTI foreign key (TypeID)
references tb_Dictionary (TypeID)
go alter table tb_EmployeeCon
add constraint FK_TB_EMPLO_REFERENCE_TB_EMPLO foreign key (InfoID)
references tb_Employee (InfoID)
go
本系列项目源码下载地址:https://github.com/GarsonZhang/GZFramework.Demo
系列文章
4. GZFramwork数据库层《二》单据表增删改查(自动生成单据号码)
6. GZFramwork数据库层《四》单据主从表增删改查(主键自动生成)
7. GZFramwork数据库层《五》高级主从表增删改查(主表明细表主键都自动生成)
8. GZFramwork数据库层《六》存储过程调用
9. GZFramwork数据库层《七》总结
GZFramwork数据库层《前言》Demo简介的更多相关文章
- GZFramwork数据库层《前言》DLL项目引用
新建项目: 1. 项目引入GZFramwork.dll NuGet地址:Install-Package GZFramwork 每个项目都引用 2.BLL层 设置数据库连接维护类:继承于:GZFramw ...
- GZFramwork数据库层《四》单据主从表增删改查
同GZFramwork数据库层<三>普通主从表增删改查 不同之处在于:实例 修改为: 直接上效果: 本系列项目源码下载地址:https://github.com/GarsonZhang/G ...
- GZFramwork数据库层《三》普通主从表增删改查
运行结果: 使用代码生成器(GZCodeGenerate)生成tb_Cusomer和tb_CusomerDetail的Model 生成器源代码下载地址: https://github.com/Gars ...
- GZFramwork数据库层《二》单据表增删改查(自动生成单据号码)
运行效果: 使用代码生成器(GZCodeGenerate)生成tb_EmpLeave的Model 生成器源代码下载地址: https://github.com/GarsonZhang/GZCodeGe ...
- GZFramwork数据库层《一》普通表增删改查
运行结果: 使用代码生成器(GZCodeGenerate)生成tb_MyUser的Model 生成器源代码下载地址: https://github.com/GarsonZhang/GZCode ...
- 8 Django 模型层(1)--orm简介
ORM简介 MVC或者MVC框架中包括一个重要的部分,就是ORM,它实现了数据模型与数据库的解耦,即数据模型的设计不需要依赖于特定的数据库,通过简单的配置就可以轻松更换数据库,这极大的减轻了开发人员的 ...
- 《转》读discuzx3.1 数据库层笔记
最近开始在看discuzx3.1的代码,看到数据库层的实现,discuzx的数据库层能够支撑数据库分库,分布式部署,主要水平分表,也可以很方便的支持其他数据库.性能上,可以做读写分离,支持数据缓存.可 ...
- SAP Netweaver和Hybris的数据库层
ABAP Netweaver 在SAP基于Netweaver的ABAP应用里,应用开发人员用Open SQL访问数据库, 这些Open SQL会被Database interface(数据库接口)转换 ...
- 第一章 权限管理DEMO简介
源代码GitHub:https://github.com/ZhaoRd/Zrd_0001_AuthorityManagement 1.系列介绍 工作已有五年之久,一直有想通过博客写点自己知道的,在博客 ...
随机推荐
- JavaScript原型链问题
1. 使用new来创建对象(调用构造函数)时,如果return的是非对象(数字.字符串.布尔类型等)会忽而略返回值;如果return的是对象,则返回该对象. 2. 重写原型会切断原型链: foo = ...
- phpstorm 实用快捷键 和 注释
1. 注释 类似 /**退款详情 * @param * @param * @param * @return * @author */ 在方法中引入,直接/**+enter键 2.快捷建 CTRL ...
- VMware网络设置
Host-only:主机想和虚拟机通信时使用 NAT :虚拟机想通过主机IP上网时使用 Bridged:虚拟机直接连接到物理网络时使用 Q:如果主机想和虚拟机正常通信又想能上网怎么办? A:添加两个网 ...
- 便捷从使用git开始
每次浏览网站上传代码,实在过于不便,为此我们引入git来管理我们的代码. 查看帮助手册是了解其的最佳路径,coding.net也不例外.通过浏览https://coding.net/help/,你会发 ...
- C#编程利器之三:接口(Interface)【转】
C#编程利器之三:接口(Interface) C#接口是一个让很多初学者容易迷糊的东西,用起来好象很简单,定义接口,然后在里面定义方法,通过继承与他的子类来完成具体的实现.但没有真正认识接口的作用的时 ...
- 《Linux内核分析》第六周 进程的描述与创建
[刘蔚然 原创作品转载请注明出处 <Linux内核分析>MOOC课程http://mooc.study.163.com/course/USTC-1000029000] WEEK SIX(3 ...
- C++程序设计(三)
1. 运算符重载 目的:对抽象数据类型也能够直接使用C++提供的运算符.使得程序更简洁,代码更容易理解. 运算符重载的实质是函数重载 返回值类型 operator 运算符(形参表) { -- } 运算 ...
- php日期时间函数和数学函数
<?php //第一部分:日期和时间函数 ----------------------------- time(); //int time(void),返回当前时间的时间戳 mktime(); ...
- soap和http的区别
Http get,post,soap协议都是在http上运行的1)get:请求参数是作为一个key/value对的序列(查询字符串)附加到URL上的查询字符串的长度受到web浏览器和web服务器的限制 ...
- .NET调用外部接口将得到的List数据,并使用XmlSerializer序列化List对象成XML格式
BidOpeningData.BidSupervisionSoapClient client = new BidOpeningData.BidSupervisionSoapClient(); Dict ...