• 大小: 12.36MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-07-01
  • 语言: C#
  • 标签: 答案  

资源简介

C#程序设计经典教程.

资源截图

代码片段和文件信息

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 Exp10
{
    public partial class Exp10_1 : Form
    {
        public Exp10_1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender EventArgs e)
        {
            listBox1.Items.Clear();
            string connString = “Data Source= . ;Initial Catalog=MyBookShop;User ID=sa;pwd=123456“; 
            SqlConnection connection = new SqlConnection(connString);
            string sql = “SELECT title FROM Books “;
            SqlCommand command = new SqlCommand(sql connection);
            connection.Open();
            //调用 Command对象的ExecuteReader(),创建 DataReader 对象
            SqlDataReader dataReader = command.ExecuteReader();
            // 循环读出所有的书目名,并添加到书目列表框中
            while (dataReader.Read())
            {
                string title = dataReader[“title“].ToString();
                listBox1.Items.Add(title);
            }
            dataReader.Close();

        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       9728  2011-07-18 11:53  test3_2\test3_2\bin\Debug\test3_2.exe

     文件      24064  2011-07-18 11:53  test3_2\test3_2\bin\Debug\test3_2.pdb

     文件      11600  2011-07-18 11:46  test3_2\test3_2\bin\Debug\test3_2.vshost.exe

     文件       6169  2011-07-18 11:53  test3_2\test3_2\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件        184  2011-07-18 11:53  test3_2\test3_2\obj\x86\Debug\GenerateResource.read.1.tlog

     文件        466  2011-07-18 11:53  test3_2\test3_2\obj\x86\Debug\GenerateResource.write.1.tlog

     文件        546  2011-07-18 11:46  test3_2\test3_2\obj\x86\Debug\test3_2.csproj.FileListAbsolute.txt

     文件       9728  2011-07-18 11:53  test3_2\test3_2\obj\x86\Debug\test3_2.exe

     文件      24064  2011-07-18 11:53  test3_2\test3_2\obj\x86\Debug\test3_2.pdb

     文件        180  2011-07-18 11:38  test3_2\test3_2\obj\x86\Debug\test3_2.Properties.Resources.resources

     文件        180  2011-07-18 11:53  test3_2\test3_2\obj\x86\Debug\test3_2.Test3_2.resources

     文件        490  2011-07-18 11:16  test3_2\test3_2\Program.cs

     文件       1364  2011-07-18 11:16  test3_2\test3_2\Properties\AssemblyInfo.cs

     文件       2864  2011-07-18 11:16  test3_2\test3_2\Properties\Resources.Designer.cs

     文件       5612  2011-07-18 11:16  test3_2\test3_2\Properties\Resources.resx

     文件       1092  2011-07-18 11:16  test3_2\test3_2\Properties\Settings.Designer.cs

     文件        249  2011-07-18 11:16  test3_2\test3_2\Properties\Settings.settings

     文件        994  2011-07-18 14:32  test3_2\test3_2\Test3_2.cs

     文件       3683  2011-07-18 11:38  test3_2\test3_2\test3_2.csproj

     文件       5149  2011-07-18 11:53  test3_2\test3_2\Test3_2.Designer.cs

     文件       5817  2011-07-18 11:53  test3_2\test3_2\Test3_2.resx

     文件        863  2011-07-18 11:16  test3_2\test3_2.sln

    ..A..H.     20992  2011-07-18 14:32  test3_2\test3_2.suo

     文件       9216  2011-07-18 14:42  test3_3\test3_3\bin\Debug\test3_3.exe

     文件      24064  2011-07-18 14:42  test3_3\test3_3\bin\Debug\test3_3.pdb

     文件      11600  2011-07-18 14:33  test3_3\test3_3\bin\Debug\test3_3.vshost.exe

     文件        490  2010-03-17 22:39  test3_3\test3_3\bin\Debug\test3_3.vshost.exe.manifest

     文件       6169  2011-07-18 14:42  test3_3\test3_3\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件        184  2011-07-18 14:42  test3_3\test3_3\obj\x86\Debug\GenerateResource.read.1.tlog

     文件        466  2011-07-18 14:42  test3_3\test3_3\obj\x86\Debug\GenerateResource.write.1.tlog

............此处省略4469个文件信息

评论

共有 条评论