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.Security;
using System.Reflection;
using System.Security.Permissions;
[assembly: AssemblyKeyFile("keys.snk")]
[assembly: AssemblyVersion("1.1.1.0")]
namespace FindDataTableDeme
{
[PublisherIdentityPermission(SecurityAction.InheritanceDemand,CertFile="Certificate.cer")]
public partial class Form1 : Form
{
DataSet ds = new DataSet();
private DataRow rowFound;
//System.Runtime.Serialization.ISerializable
//System.SerializableAttribute
/// <summary>
///
/// </summary>
public Form1()
{
InitializeComponent();
}
/// <summary>
/// 塗聚文 締友計算機信息技術有限公司 Geovin Du
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void Form1_Load(object sender, EventArgs e)
{
//DataTable dt = findDatatble();
//DataRow foundRow =dt.DefaultView.Find(this.textBox1.Text.Trim());
findDatatble();
}
private void findDatatble()
{
DataTable table1 = new DataTable("table one");
DataTable table2 = new DataTable("table two");
//creating columns for the tables:
table1.Columns.Add(new DataColumn("id", typeof(int)));
table1.Columns.Add(new DataColumn("someText", typeof(string)));
table2.Columns.Add(new DataColumn("id2", typeof(int)));
table2.Columns.Add(new DataColumn("someOtherText", typeof(string)));
//populating tables, one by one and add them to dataSet:
//populating table 1:
DataRow dr;
for (int i = 1; i < 13; i++)
{
dr = table1.NewRow();
dr["id"] = i;
dr["someText"] = "text with number " + i.ToString();
table1.Rows.Add(dr);
}
dr = table1.NewRow();
dr["id"] = 14;
dr["someText"] = "涂聚文";
table1.Rows.Add(dr);
//populating table 2:
for (int i = 101; i < 113; i++)
{
dr = table2.NewRow();
dr["id2"] = i;
dr["someOtherText"] = "other text with number " + i.ToString();
table2.Rows.Add(dr);
}
dr = table2.NewRow();
dr["id2"] = 114;
dr["someOtherText"] = "涂聚文";
table2.Rows.Add(dr);
//adding both tables to dataSet:
ds.Tables.AddRange(new DataTable[] { table1, table2 });
//you could add them seperately, like:
//ds.Tables.Add(table1);
//ds.Tables.Add(table2);
//Now lets loop through the dataSet and write the results out (int messageBox):
for (int i = 0; i < ds.Tables.Count; i++) //LOOP THROUGH TABLES OF DATASET
{
string text = null;
foreach (DataRow dr1 in ds.Tables[i].Rows) //LOOP TRGOUGH THE ROWS OF <strong class="highlight">DATATABLE</strong>
{
string a = dr1[0].ToString();
string b = dr1[1].ToString();
text += a + ". " + b + Environment.NewLine;
}
// MessageBox.Show("In dataSet is dataTable of index [" + i + "] with values:\n" + text);
}
ds.Tables[0].DefaultView.Sort = "id";
// Set Primary Key and Sort Order
DataColumn[] dcolPk = new DataColumn[1];
dcolPk[0] = ds.Tables[0].Columns["someText"];
ds.Tables[0].PrimaryKey = dcolPk;
dataGridView1.DataSource = ds.Tables[0].DefaultView;
}
/// <summary>
///
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void button1_Click(object sender, EventArgs e)
{
try
{
int intRow;
object s = textBox1.Text.Trim();
// At least one row matches primary key
rowFound = ds.Tables[0].Rows.Find(s); //所搜索的内容,也是设定的主键
if (rowFound != null)
{
MessageBox.Show(rowFound[0].ToString()+","+rowFound[1].ToString());
}
else
{
MessageBox.Show("A row with the primary key of " + s + " could not be found");
}
DataRow[] foundRows;
foundRows = ds.Tables[0].Select("someText Like '涂%'");
if (foundRows != null)
{
MessageBox.Show(foundRows[0].ToString());
}
//// Finds the row specified in txtFindArg
//intRow = ds.Tables[0].DefaultView.Find(s);
////Debug.WriteLine(intRow);
//if (intRow == -1)
//{
// MessageBox.Show("No PK matches " + textBox1.Text);
//}
//else
//{
// // Jump to the Row and select it
// //dataGridView1.CurrentRow.Index = intRow; //CurrentRowIndex
// dataGridView1.Rows[intRow].Selected=true;
//}
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
}
private void s()
{
//create a datatable object which will host the two column: notebookID, notebook producer
DataTable o_aTable = new DataTable("Notebooks");
//creating a datacolumn
//definition and initilization of column
DataColumn o_aColumn = new DataColumn();
//defining column properties
//caption
o_aColumn.Caption = "Notebook Producers";
//type of column
o_aColumn.DataType = System.Type.GetType("System.String");
//access name of column
o_aColumn.ColumnName = "Producer";
//default value
o_aColumn.DefaultValue = "unknown producer";
//add column to the table
o_aTable.Columns.Add(o_aColumn);
//initialize a new instance of data column for creating a new column
o_aColumn = new DataColumn();
//defining column properties
//caption
o_aColumn.Caption = "Notebook Producer ID";
//type of column
o_aColumn.DataType = System.Type.GetType("System.Int32");
//access name of column
o_aColumn.ColumnName = "ProducerID";
//default value
o_aColumn.DefaultValue = 0000;
//add new column to the table
o_aTable.Columns.Add(o_aColumn);
//create a primary key column to use search
//definition and initial.
DataColumn[] o_aPrimaryKeyColumn = new DataColumn[1];
//assigning notebookID column of created table to this column: it will serve as primary key column
o_aPrimaryKeyColumn[0] = o_aTable.Columns["ProducerID"];
//mapping primary key column of table to the created primary key holder column
o_aTable.PrimaryKey = o_aPrimaryKeyColumn;
//adding rows-records to column
//create a datarow object which serves as a record entry
DataRow o_aRow;
//adding the records
//add 1th record for producer HP
//initialize a new row for table object
o_aRow = o_aTable.NewRow();
//assign value of 1th column ID
o_aRow["ProducerID"] = 1;
//assign value of 2th column producer
o_aRow["Producer"] = "HP";
//add 1th row to the table
o_aTable.Rows.Add(o_aRow);
//add 2nd record for producer IBM
//initialize a new row for table object
o_aRow = o_aTable.NewRow();
//assign value of 1th column ID
o_aRow["ProducerID"] = 2;
//assign value of 2th column producer
o_aRow["Producer"] = "IBM";
//add 2nd row to the table
o_aTable.Rows.Add(o_aRow);
//display the records within table
for (int i = 0; i < o_aTable.Rows.Count;i++ )
{
//display ID
Console.WriteLine("row " + i + ": notebook ID is: " + o_aTable.Rows[i]["ProducerID"].ToString());
//display producer
Console.WriteLine("row " + i + ": notebook Producer is: " + o_aTable.Rows[i]["Producer"].ToString());
}
//Handling row with specifying a particular primary column addressed by ID
//create a row object to store found row which matches criteria ID
DataRow o_dRow_findedRow;
//look for row with id 1
if ((o_dRow_findedRow = o_aTable.Rows.Find("1")) != null)
{
Console.WriteLine("Primary key column of Table (in memory) is being queried for notebookID 1...");
Console.WriteLine("A row with notebookID 1 is found.");
}
else
{
Console.WriteLine("A record with notebookID 1 is not found.");
}
}
}
}
分享到:
相关推荐
在C#编程中,DataTable是System.Data命名空间中的一个类,它用于存储和操作数据集中的数据表。在处理大量数据时,有时我们需要删除DataTable中的特定行或多行。本篇将详细介绍如何在C#中有效地实现DataTable的多行...
在.NET框架中,DataTable是一个非常重要的数据结构,用于在内存中存储和操作表格型数据。对于初学者来说,掌握DataTable的使用是学习数据库操作的基础。本文将深入讲解如何对DataTable进行赋值,以及相关的编程技巧...
对DataTable进行分页,对DataTable进行分页
DataTable提供了许多内置事件,如`draw`, `search`, `order`等,可以监听并响应这些事件实现自定义功能。例如: ```javascript $('#example').on('draw.dt', function() { console.log('Table redrawn'); }); ...
### 把DataReader转换成DataTable的方法 在.NET框架中,DataReader和DataTable是两种常见的数据处理对象。DataReader主要用于快速读取只进、只读的数据流,而DataTable则提供了内存中的表格数据结构,支持数据排序...
【DataTable技术全面讲解】 DataTable是.NET Framework中System.Data命名空间中的一个核心组件,它是ADO.NET数据访问模型的重要组成部分。在数据库编程中,DataTable通常用于在内存中存储和操作数据,即使这些数据...
### VB.NET中的DataTable常用方法详解 #### 一、行操作:追加与删除 ##### 行追加 在处理DataTable时,我们常常需要向表中添加新的数据行。以下是几种常用的行追加方法: 1. **`DataTable.Rows.Add()`** 这是最...
在.NET框架中,ArrayList和DataTable是两种常用的集合类,它们分别代表了两种不同的数据存储方式。ArrayList是一个基于对象数组的动态大小的列表,而DataTable则是一个内存中的表格数据结构,通常用于存储和操作关系...
在MATLAB中,DataTable是用于处理结构化数据的一种强大工具,尤其适合于处理具有固定列名和可变行数的数据。这个"matlab开发-DataTable"主题深入探讨了如何利用DataTable进行数据操作、分析和可视化。 DataTable的...
在本篇文章中,我们将深入探讨如何将一个列表(List)转换为数据表(DataTable)。这一操作在.NET框架下的数据处理中十分常见,特别是在需要将内存中的数据结构转换为可以进行进一步处理或展示的数据表格式时。 ###...
在java下可用的datatable组件,提供了jar包和调用例子。jar包从国外一个网站找到的,可惜找遍了也没找到怎么使用,费了半天挨个试,终于知道怎么用了(从resultset到datatable,加行,加列,赋值,取值,循环显示等...
在WinForms应用中,有时候我们需要将数据表(如DataTable)的数据打印出来,这在报表生成、数据分析等场景下非常常见。本文将深入探讨如何使用C# WinForms来打印DataTable中的数据。 首先,要实现这个功能,我们...
在.NET框架中,DataTable是一个非常常用的类,它用于在内存中存储数据,通常与数据库操作密切相关。当数据未写入数据库或需要在本地进行处理时,DataTable提供了灵活的数据操作方式。在描述中提到的情况,我们可以...
在IT领域,DataTable是.NET Framework中System.Data命名空间下的一个核心组件,主要用于存储和操作数据。在处理大量数据时,我们可能需要对数据进行各种操作,例如分类、求和、汇总以及排序。以下是对"DataTable分类...
无参构造函数`DataTable()`用于创建一个默认的DataTable,而带参数的构造函数如`DataTable(string tableName)`和`DataTable(string tableName, string tableNamespace)`则允许我们为DataTable指定名称和命名空间,...
在java下可用的datatable组件,提供了jar包和调用例子。jar包从国外一个网站找到的,可惜找遍了也没找到怎么使用,费了半天挨个试,终于知道怎么用了(从resultset到datatable,加行,加列,赋值,取值,循环显示等...
Datatable 使用详解 Datatable 是 ADO.NET 中的一个重要组件,用于存储和管理内存中的数据。它可以独立于数据库存在,数据可以来自多个源,包括数据库、XML 等。Datatable 提供了灵活的数据存储和管理方式,支持...
在.NET框架中,`DataTable`是System.Data命名空间中的一个核心组件,它是ADO.NET数据模型的重要部分。`DataTable`提供了一个在内存中存储数据的表格结构,可以用来处理数据库查询的结果,或者作为独立的数据集进行...
2. **监听`dataTable`事件**:`dataTable`提供了多种事件,如`draw`、`search`、`page`等,这些事件在用户进行操作时触发,我们可以通过监听这些事件来获取当前选中的数据。 3. **使用`echarts`绘制图表**:当`...
### ASP.NET DataTable 操作大全与最全教程解析 在 ASP.NET 开发中,`DataTable` 是一个非常核心且实用的数据结构,它模仿了关系数据库的行为,提供了类似 SQL 的查询功能和数据操作方式,使得在内存中处理数据变得...