大概明白你的意思了。
1、在解决方案里面,单击右键,添加->新建项->数据->基于服务的数据库->数据集,若卡住关闭就可以了。
2、服务器资源管理器中,数据连接中选择你新建的数据库,在其中新建表,设好主键,自增长。以及其他的,填好数据。
下面的登录界面给一个我曾经写过的给你。
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 银行查询客户端
{
public partial class 登录界面 : Form
{
public 登录界面()
{
InitializeComponent();
// string CountName=null;
welcometimer.Tick += new EventHandler(welcome_Tick);
welcometimer.Start();
string dataDir = AppDomain.CurrentDomain.BaseDirectory;
if (dataDir.EndsWith(@"bin\Debug\") || dataDir.EndsWith(@"bin\Release"))
{
dataDir = System.IO.Directory.GetParent(dataDir).Parent.Parent.FullName;
AppDomain.CurrentDomain.SetData("DataDirectory", dataDir);
}
}
public static string Accountname = null;
private void button1_Click(object sender, EventArgs e)
{
string inputname = textBox1.Text;
string inputpassword = textBox2.Text;
using (SqlConnection sqlConnection = new SqlConnection(@"Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\BankDatabase.mdf;Integrated Security=True;User Instance=True"))
{
sqlConnection.Open();
using (SqlCommand cmd = sqlConnection.CreateCommand())
{
//先找出该用户名所有的东西
cmd.CommandText = "select * from AccountInfo where AccountName=@username";
cmd.Parameters.Add(new SqlParameter("username", inputname));
using (SqlDataReader reader = cmd.ExecuteReader())
{
if (reader.Read())
{
string dbpassword = reader.GetString(reader.GetOrdinal("AccountPassword"));
if (dbpassword == inputpassword)
{
MessageBox.Show("登录成功!");
Accountname = textBox1.Text;
this.Hide();
Form1 f1 = new Form1();
f1.ShowDialog();
}
else
{
MessageBox.Show("密码错误!","错误",MessageBoxButtons.OK,MessageBoxIcon.Error);
}
}
else
{
MessageBox.Show("该用户名不存在!");
}
}
}
}
}
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == Convert.ToChar(Keys.Enter))
{
textBox2.Focus();
}
}
private void textBox2_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == Convert.ToChar(Keys.Enter))
{
button1.PerformClick();
}
}
}
}
追问但我放的那2张图 具体怎样做?
追答那个也基础了吧。。
服务器资源管理器-》数据连接-》你建的数据库-》添加新表
然后设计表,往表中填数据。。
记得设ID为主键。
追问VS 2012新建数据库是 建SQL Server Compact?还是 不行 能加Q 截一下图么?