摘要:
1 --------------创建数据库------------------ 2 use master 3 go 4 if exists(select * from sysdatabases where name='Text001') 5 begin 6 drop database Text001 7 end 8 go 9 create database Text00110 go11 use Text00112 --1) 创建一张学生表,包含以下信息,学号,姓名,年龄,性别,家庭住址,联系电话13 create table stu 14 (15 学号... 阅读全文
摘要:
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace Wind{ public partial class Form1 : Form { int c = 1; public Form1() { InitializeComponent(); ... 阅读全文