C#_會員管理系統(使用者登入)

來源:互聯網
上載者:User

標籤:

首先建立資料庫:

[Vip]

建立三張表:

分別是:

[VipInformation](會員資訊)

 

[Log](日誌)

 

[VipAccount](賬戶許可權)

詳細語句:

 

 1 --建立資料庫[Vip] 2 create database Vip 3 on primary 4 ( 5     name=‘Vip‘ 6     ,filename=‘E:\vip\Vip.mdf‘ 7     ,size=3MB 8     ,maxsize=100MB 9     ,filegrowth=10%10 )11 log on12 (13     name=‘Vip_log‘14     ,filename=‘E:\Vip\Vip_log.ldf‘15     ,size=1MB16     ,maxsize=unlimited17     ,filegrowth=1MB18 )19 Go20 --查詢資料庫[Vip]21 use vip22 --建立表[VipInformation](會員資訊)23 create table VipInformation24 (25     vId int identity(1,1) primary key26     ,vName nvarchar(30)27     ,vGender nchar(2)28     ,vAge int29     ,vAddress nvarchar(50)30     ,vPhone varchar(20)31 )32 --查詢表[VipInformation]33 select * from VipInformation34 --建立表[Log](日誌)35 create table [Log]36 (37     id int identity(1,1) primary key38     ,vName nvarchar(30)39     ,situation nchar(10)40     ,[time] datetime41     ,vType nvarchar(50)42 )43 --查詢表[Log]44 select * from [log]45 --建立表[VipAccount](賬戶許可權)46 create table VipAccount47 (48     vId int identity(1,1) primary key49     ,vUserName nvarchar(20) not null50     ,vUserPwd nchar(20) not null51     ,UserType nvarchar(50) null52 )53 --查詢表[VipAccount]54 select * from VipAccount55 --插入表[VipAccount]56 insert into VipAccount(vUserName,vUserPwd,UserType) values(‘admin‘,‘123‘,‘Administrator‘)

 

 

待續。。。

 

C#_會員管理系統(使用者登入)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.