freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

delphi考試系統(tǒng)畢業(yè)設(shè)計(參考版)

2025-05-17 18:58本頁面
  

【正文】 網(wǎng)頁的編輯工具比較好選, Dreamweaver 功能最強(qiáng)大使用方便,并且他還提供 30 天試用版,是不二之選。這樣一來效率很底,也許正因?yàn)檫@個原因 XML 才沒有 HTML 應(yīng)用多 。 . XML和網(wǎng)頁編輯工具的選擇 XML 的開發(fā)工具我試過好幾個,可都不理想,不是使用不方便就是對中文的支持不好。 . 編程工具的選擇 目前比較流行的開發(fā)工具 VC++、 VB 和 Delphi 等都可以實(shí)現(xiàn)本程序的中間件 COM+程序的開發(fā)。) drop table go /*==============================================================*/ /* Table: Admin */ /*==============================================================*/ create table ( Name char(12) not null, PWD char(16) not null, constraint PK_ADMIN primary key (Name) ) go /*==============================================================*/ /* Index: Index_Name */ /*==============================================================*/ create index Index_Name on ( Name ) go /*==============================================================*/ /* Table: Papers */ /*==============================================================*/ create table ( ID bigint identity, TeacherID char(10) not null, StudentID char(10) not null, PaperID int not null, Subject varchar(50) not null, Score smallint null constraint CKC_SCORE_PAPERS check (Score is null or (Score = 0 )), constraint PK_PAPERS primary key (ID) ) go /*==============================================================*/ /* Index: Index_StudentID */ /*==============================================================*/ create index Index_StudentID on ( StudentID ) go /*==============================================================*/ /* Table: Questions */ /*==============================================================*/ create table ( QuestionID bigint identity, Subject varchar(50) not null, Question varchar(200) not null, Select1 varchar(100) not null, Select2 varchar(100) not null, Select3 varchar(100) not null, Select4 varchar(100) not null, Answer char(1) not null, constraint PK_QUESTIONS primary key (QuestionID) ) go /*==============================================================*/ /* Index: Index_SubjectID */ /*==============================================================*/ create index Index_SubjectID on ( Subject ) go /*==============================================================*/ /* Table: Students */ /*==============================================================*/ create table ( StudentID char(10) not null, Name char(12) not null, Age smallint not null constraint CKC_AGE_STUDENTS check (Age between 0 and 100), Sex char(2) not null, EnterTime datetime not null, PWD char(16) not null, Email varchar(35) null, constraint PK_STUDENTS primary key (StudentID) ) go /*==============================================================*/ /* Table: Teachers */ /*==============================================================*/ create table ( TeacherID char(10) not null, Name char(12) not null, PWD char(16) not null, Subject varchar(50) not null, Email varchar(35) null, constraint PK_TEACHERS primary key (TeacherID) ) go /*==============================================================*/ /* Index: Index_Name */ /*==============================================================*/ create index Index_Name on ( Name ) go alter table add constraint FK_PAPERS_CREATE_TEACHERS foreign key (TeacherID) references (TeacherID) go alter table add constraint FK_PAPERS_TESTING_STUDENTS foreign key (StudentID) references (StudentID) go 5. 系統(tǒng)實(shí)現(xiàn) . 開發(fā)平臺的選擇 本系統(tǒng)由于是采用的微軟公司所推出的分布式 Web 應(yīng)用構(gòu)架,所以開發(fā)平臺使用了 Windows2020,數(shù)據(jù)庫選用 SQL Server2020, Web 服務(wù)器程序使用。) and type = 39。) drop table go if exists (select 1 from sysobjects where id = object_id(39。) and type = 39。) drop table go if exists (select 1 from sysobjects wher
點(diǎn)擊復(fù)制文檔內(nèi)容
畢業(yè)設(shè)計相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1