C#连接ODBC数据源代码

C#连接ODBC数据源代码

// Namespaces, variables, and constants
using System;
using System.Configuration;
using System.Data;
using System.Data.Odbc;
private void CButton_Click(object sender, System.EventArgs e)
{
    // Create the DataAdapter.#codego.net # codego.net#
    String sql = "SELECT ID, Name FROM Products";
    OdbcDataAdapter da = new OdbcDataAdapter(sql,ConfigurationSettings.AppSettings["connectionstring1"]);
    // Create the table, fill it, and bind the default view to the grid.
    DataTable dt = new DataTable( );
    da.Fill(dt);
}


本文出自 “赚的多不多” 博客,请务必保留此出处http://10068168.blog.51cto.com/10058168/1629037

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。