• 大小: 0.05M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2024-04-22
  • 语言: C#
  • 标签: pdf  水印  

资源简介


资源截图

代码片段和文件信息

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;
//download by http://down.liehuo.net
using System.Data.OleDb;

namespace Case05_4
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        OleDbConnection mycon;
        string bookname;

        public void getScoure(string str_name)
        {
            string mysql = “select * from mytable where 书名 = ‘“ + bookname + “‘“;      //Sql查询语句
            OleDbCommand mycom = new OleDbCommand(mysql mycon);                     //定义OleDbCommand对象实例并连接数据库
            OleDbDataReader myread = mycom.ExecuteReader();                         //定义OleDbDataReader对象实例
            while (myread.Read())
            {
                this.textBox1.Text = myread[1].ToString();   //把数据库表中的记录显示在相应的文本框中
                this.textBox2.Text = myread[2].ToString();
                this.textBox3.Text = myread[3].ToString();
                this.textBox4.Text = myread[4].ToString();
                this.textBox5.Text = myread[5].ToString();
            }
            myread.Close();
            myread.Dispose();
        }

        private void Form1_Load(object sender EventArgs e)
        {
            string mypath = Application.StartupPath + “\\mydata.accdb“;   //连接数据库的路径及数据库名
            string constr = “Provider = Microsoft.ACE.OLEDB.12.0; Data Source =“ + mypath;  //生成连接数据库字符串
            mycon = new OleDbConnection(constr);   //定义OleDbConnection对象实例并连接数据库
            mycon.Open();
            string mysql = “select * from mytable“;                //Sql查询语句
            OleDbCommand mycom = new OleDbCommand(mysql mycon);   //定义OleDbCommand对象实例并连接数据库
            OleDbDataReader myread = mycom.ExecuteReader();       //定义OleDbDataReader对象实例
            listView1.FullRowSelect = true;
            while (myread.Read())
            {
                ListViewItem mylv = new ListViewItem(myread[1].ToString());  
                listView1.Items.Add(mylv);               //把数据库表中“出版社”字段信息添加到ListView控件中
            }
            myread.Close();
            myread.Dispose();
        }

        private void listView1_Click(object sender EventArgs e)
        {
            bookname = listView1.SelectedItems[0].SubItems[0].Text;
            if (bookname != null)
            {
                getScoure(bookname);
            }
        }
    }
}

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

     文件      11776  2021-02-06 14:38  C#学习教程\Case05_4\bin\Debug\Case05_4.exe

     文件      24064  2021-02-06 14:38  C#学习教程\Case05_4\bin\Debug\Case05_4.pdb

     文件     458752  2021-02-06 14:44  C#学习教程\Case05_4\bin\Debug\mydata.accdb

     文件       3955  2021-02-06 14:38  C#学习教程\Case05_4\Case05_4.csproj

     文件       2821  2010-09-14 08:22  C#学习教程\Case05_4\Form1.cs

     文件       9054  2010-09-14 08:22  C#学习教程\Case05_4\Form1.Designer.cs

     文件       5814  2008-06-10 18:56  C#学习教程\Case05_4\Form1.resx

     文件         42  2021-02-06 14:38  C#学习教程\Case05_4\obj\Debug\Case05_4.csproj.CoreCompileInputs.cache

     文件        955  2021-02-06 14:38  C#学习教程\Case05_4\obj\Debug\Case05_4.csproj.FileListAbsolute.txt

     文件        847  2021-02-06 14:38  C#学习教程\Case05_4\obj\Debug\Case05_4.csproj.GenerateResource.cache

     文件       9076  2021-02-06 14:39  C#学习教程\Case05_4\obj\Debug\Case05_4.csprojAssemblyReference.cache

     文件      11776  2021-02-06 14:38  C#学习教程\Case05_4\obj\Debug\Case05_4.exe

     文件        180  2021-02-06 14:38  C#学习教程\Case05_4\obj\Debug\Case05_4.Form1.resources

     文件      24064  2021-02-06 14:38  C#学习教程\Case05_4\obj\Debug\Case05_4.pdb

     文件        180  2021-02-06 14:38  C#学习教程\Case05_4\obj\Debug\Case05_4.Properties.Resources.resources

     文件        855  2021-02-06 14:44  C#学习教程\Case05_4\obj\Debug\DesignTimeResolveAssemblyReferences.cache

     文件       6942  2021-02-06 14:39  C#学习教程\Case05_4\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件       3584  2021-02-06 14:39  C#学习教程\Case05_4\obj\Debug\TempPE\Properties.Resources.Designer.cs.dll

     文件        489  2008-06-10 18:25  C#学习教程\Case05_4\Program.cs

     文件       1372  2008-06-10 18:25  C#学习教程\Case05_4\Properties\AssemblyInfo.cs

     文件       2872  2021-02-06 14:38  C#学习教程\Case05_4\Properties\Resources.Designer.cs

     文件       5612  2008-06-10 18:25  C#学习教程\Case05_4\Properties\Resources.resx

     文件       1108  2021-02-06 14:38  C#学习教程\Case05_4\Properties\Settings.Designer.cs

     文件        249  2008-06-10 18:25  C#学习教程\Case05_4\Properties\Settings.settings

     文件       1130  2021-02-06 14:38  C#学习教程\Case05_4.sln

     目录          0  2021-02-06 14:47  C#学习教程\Case05_4\obj\Debug\TempPE

     目录          0  2021-02-06 14:47  C#学习教程\Case05_4\bin\Debug

     目录          0  2021-02-06 14:47  C#学习教程\Case05_4\obj\Debug

     目录          0  2021-02-06 14:47  C#学习教程\Case05_4\bin

     目录          0  2021-02-06 14:47  C#学习教程\Case05_4\obj

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

评论

共有 条评论