C#连接ODBC数据源的方法
更新时间:2015年04月04日 17:03:13 作者:令狐不聪
这篇文章主要介绍了C#连接ODBC数据源的方法,实例分析了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.
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);
}
using System;
using System.Configuration;
using System.Data;
using System.Data.Odbc;
private void CButton_Click(object sender, System.EventArgs e)
{
// Create the DataAdapter.
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);
}
希望本文所述对大家的C#程序设计有所帮助。
您可能感兴趣的文章:
- C#通过oledb访问access数据库的方法
- C#基于OLEDB获取Excel文件表结构信息的方法
- C#实现Access通用访问类OleDbHelper完整实例
- C#使用oledb导出数据到excel的方法
- C#使用oledb操作excel文件的方法
- C#使用oledb读取excel表格内容到datatable的方法
- C#连接MySql数据库的方法
- C# 连接SQL数据库的方法及常用连接字符串
- c#连接sqlserver数据库、插入数据、从数据库获取时间示例
- 深入分析C#连接Oracle数据库的连接字符串详解
- C#利用ODP.net连接Oracle数据库的操作方法
- C#连接mysql数据库完整实例
- C#使用ODBC与OLEDB连接数据库的方法示例
相关文章
C#实现给DevExpress中GridView表格指定列添加进度条
这篇文章主要为大家详细介绍了如何利用C#实现给DevExpress中GridView表格指定列添加进度条显示效果,感兴趣的小伙伴可以尝试一下2022-06-06
最新评论