码迷,mamicode.com
首页 > 数据库 > 详细

C#连接ODBC数据源代码

时间:2015-04-05 12:06:44      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:default   源代码   private   create   

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

C#连接ODBC数据源代码

标签:default   源代码   private   create   

原文地址:http://10068168.blog.51cto.com/10058168/1629037

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!