운전면허 시험 프로그램 C#,DB연동
닫기
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
해당 자료는 10페이지 까지만 미리보기를 제공합니다.
10페이지 이후부터 다운로드 후 확인할 수 있습니다.

소개글

운전면허 시험 프로그램 C#,DB연동에 대한 보고서 자료입니다.

목차

ppt 파일에 1. E.R.D 2. 상세 기능 설명서 3. 주요화면 덤프 작성.

DB쿼리 C#소스 는 폴더 안에 있습니다.

본문내용

create database driver_license
go
use driver_license
go

create table member -- member테이블 생성
(
member_sn int primary key,
member_id nvarchar(72),
member_pw nvarchar(20),
member_pwhint nvarchar(30)
)
go



create table category --category테이블 생성
(
cate_id int primary key,
cate_name nvarchar(20)
)
go


create table question -- question 테이블 생성
(
que_id int identity (1,1) primary key,
cate_id int foreign key references category(cate_id),
quiz nvarchar(500),
question_answer int
)
go


create table license -- license테이블 생성
(
license_num int identity(1,1),
license_date datetime default getdate(),
member_answer int,
answer int,
fk_member_sn int foreign key references member(member_sn) ,
fk_que_id int foreign key references question(que_id),
chk int
primary key(license_num,license_date,fk_member_sn,fk_que_id)
)
go
--------------------------------------------------
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;


namespace DriverLicense
{
public partial class Form1 : Form
{
struct exam // 배열선언 ( 문제 출력 위해서 배열을 선언함 )
{
public int id;
public string question;
public int dap;
};

public string connectionstring = "Data Source=.;Initial Catalog=driver_license;Integrated Security=True";
public Form1()
{
InitializeComponent();

Form2 aa = new Form2();

}

private void button1_Click(object sender, EventArgs e) //회원가입 버튼
{
tabpass();
tabControl1.TabPages.Clear();
tabControl1.TabPages.Add(tabPage2); //회원가입 페이지 이동

}

키워드

  • 가격5,000
  • 페이지수50페이지
  • 등록일2009.06.19
  • 저작시기2009.6
  • 파일형식압축파일(zip)
  • 자료번호#542154
본 자료는 최근 2주간 다운받은 회원이 없습니다.
청소해
다운로드 장바구니