WEB开发网
开发学院软件开发C语言 Visual C#中的数据绑定操作 阅读

Visual C#中的数据绑定操作

 2009-04-11 08:25:20 来源:WEB开发网   
核心提示: (2)连接Sql Server 2000,得到DataSet:// 设定数据连接字符串,Visual C#中的数据绑定操作(3),此字符串的意思是打开Sql server数据库, 服务器名称为server1,数据库为data1 string strCon = "Provider

(2)连接Sql Server 2000,得到DataSet:

// 设定数据连接字符串,此字符串的意思是打开Sql server数据库, 服务器名称为server1,数据库为data1 string strCon = "Provider = SQLOLEDB.1 ; Persist Security Info = False ; User ID = sa ; Initial Catalog = data1 ; Data Source = server1 " ; OleDbConnection myConn = new OleDbConnection ( strCon ) ; myConn.Open ( ) ; string strCom = " SELECT * FROM person " ; file://创建一个 DataSet myDataSet = new DataSet ( ) ; file://用 OleDbDataAdapter 得到一个数据集 OleDbDataAdapter myCommand = new OleDbDataAdapter ( strCom , myConn ) ; file://把Dataset绑定person数据表 myCommand.Fill ( myDataSet , " person " ) ; file://关闭此OleDbConnection myConn.Close ( ) ;

(二)根据不同组件,采用不同的数据绑定:

对于简单型的数据绑定,数据绑定的方法其实比较简单,在得到数据集以后,一般是通过把数据集中的某个字段绑定到组件的显示属性上面,譬如TextBox组件和Label组件,是绑定到"Text"属性。

对于复杂型的数据绑定一般是通过设定其某些属性值来实现绑定的。这些下面将会具体介绍。 

file://把Dataset绑定person数据表myCommand.Fill ( myDataSet , "person" ) ;file://关闭此OleDbConnectionmyConn.Close ( ) ;}private void button1_Click ( object sender , System.EventArgs e ){ComboBox1.DataSource = myDataSet ;ComboBox1.DisplayMember = "person.xm" ;ComboBox1.ValueMember = "person.xm" ;}static void Main ( ) {Application.Run ( new Form1 ( ) ) ;}}

上一页  1 2 3 4  下一页

Tags:Visual 数据 绑定

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接