马上加入IBC程序猿 各种源码随意下,各种教程随便看! 注册 每日签到 加入编程讨论群

C#教程 ASP.NET教程 C#视频教程程序源码享受不尽 C#技术求助 ASP.NET技术求助

【源码下载】 社群合作 申请版主 程序开发 【远程协助】 每天乐一乐 每日签到 【承接外包项目】 面试-葵花宝典下载

官方一群:

官方二群:

这里为什么会错呢

[复制链接]
查看4561 | 回复2 | 2014-8-27 17:18:01 | 显示全部楼层 |阅读模式
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 demo_Builder1
{
    public partial class Form1 : Form
    {
        SqlConnection connection=new SqlConnection();
        SqlCommand command=new SqlCommand();
        SqlDataReader reader;
        public Form1()
        {
            InitializeComponent();
            this.FormBorderStyle = FormBorderStyle.FixedSingle;
        }

        private void Form1_Load(object sender, EventArgs e)
        {

        }

        private void button1_Click(object sender, EventArgs e)
        {
            connection.ConnectionString = "Data Source=.;Initial Catalog=Test_QQ;User ID=testassword=1";
            command.Connection = connection;
            string temp= string.Format("select  count(*) from QQ_User where USER_NAME='{0}' and User_Password='{1}'", this.textBox1.Text, this.textBox2.Text);
            command.CommandText = temp;
            command.CommandType = CommandType.Text;

            try
            {
                connection.Open();
               // MessageBox.Show("数据库打开成功");
                int test =Convert.ToInt32(command.ExecuteNonQuery());
                if (test>0)
                {
                    MessageBox.Show("登陆成功");
                }
                else
                {
                    MessageBox.Show("登陆失败");
                }
            }
            catch (Exception ex)
            {

                MessageBox.Show("数据库异常"+ex);
            }
            finally
            {
                connection.Close();
            }
        }

        private void button2_Click(object sender, EventArgs e)
        {
            Application.Exit();
        }
    }
}


ibcadmin | 2014-8-27 19:14:43 | 显示全部楼层
哪里出错?哪行

点评

下午已经自己解决了 谢谢admin  详情 回复 发表于 2014-8-27 21:57
C#论坛 www.ibcibc.com IBC编程社区
C#
C#论坛
IBC编程社区
Testing_C# | 2014-8-27 21:57:07 | 显示全部楼层

下午已经自己解决了 谢谢admin
*滑块验证:
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则