VS2012版 C#新建数据库过程 与图片新建表 和把数据放表中过程

如题所述

大概明白你的意思了。

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 截一下图么?

温馨提示:内容为网友见解,仅供参考
第1个回答  2013-11-04
你想说什么?我没明白.追问

想要像图片那样

第2个回答  2013-11-04
你是问zen么建立吗追问

我做的是登录窗体 用户名密码放数据库实现 验证 建立数据库和 怎样把数据放进去数据库

追答

首先你打开数据库,右键建立数据库,输入数据库名,然后在你建立数据库的名字上右键建立表,然后输入字段名,选择字段类型,这样数据库就建立成功了。
至于怎样通过程序语言插入数据库,这个比较繁琐,在网上直接插代码吧。

SharePoint入门教程一SharePoint发展工具及术语
简单的理解就是一个文件夹里放了一堆文件,而这个文件夹就叫做文档库。如下图所示: 文档库的名称为:页面库,库里包含了7个文件。列表和文档库的区别:在初学SharePoint时,可能有很多分不清列表和库的区别,本人刚最初对这两上概念也很模糊,此处再次强调一下他们之间的不同:列表:类似于表格,存储的的数据。文档库:...

相似回答