惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Blog — PlanetScale
Blog — PlanetScale
Jina AI
Jina AI
C
Check Point Blog
V
V2EX
H
Help Net Security
Microsoft Azure Blog
Microsoft Azure Blog
P
Proofpoint News Feed
A
About on SuperTechFans
D
DataBreaches.Net
腾讯CDC
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
IT之家
IT之家
WordPress大学
WordPress大学
人人都是产品经理
人人都是产品经理
T
The Blog of Author Tim Ferriss
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
云风的 BLOG
云风的 BLOG
MongoDB | Blog
MongoDB | Blog
J
Java Code Geeks
博客园_首页
T
Tailwind CSS Blog
M
MIT News - Artificial intelligence
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

博客园 - Kejames

OSQL Command. Another version for the missing method: Enum.TryParse (in C#) Form validation before onClientClick. Defining a Version String RegistryKey取得系統Media path. Enum.GetValues() About HashTable sort. 【轉載】自定義應用程序配置文件(app.config) [轉載]11 Visual Studio 2005 IDE Tips and Tricks to Make You a More Productive Developer [轉載]Automated Class Builder for Database Tables [轉載]HyperNetDatabase [轉載]Displaying vertical rows in a DataGrid [轉載]Generate SQL INSERT commands Programmatically [轉載]SQLDataAdapter without using SQLCommandBuilder [轉載]去除代码行号的一个小程序 【動腦時間】要如何交換兩個變數,而不動用第三個變數? 網站程式安全 - 技術門檻高, 攻擊門檻低! 企業棄守!! Fiddler2 - JavaScript Beautifier Plugin Microsoft SQL Server Enterprise Manager 無法開啟的解決方式
【轉載】二位高手所寫的OleDb Help Class
Kejames · 2007-11-18 · via 博客园 - Kejames

using System;
using System.Collections.Generic;
using System.Text;
using System.Collections;
using System.Data;
using System.Data.OleDb;
using System.Configuration;

namespace Athrun
{
    
class OleDbDAL
    
{
        
//protected static string connectionString = ConfigurationSettings.AppSettings["DefaultDataSource"];//.net1.1
        protected static string connectionString = System.Configuration.ConfigurationManager.ConnectionStrings["connString"].ToString();
        
public OleDbDAL()
        
{
            
//構造function
        }

        
公用方法

        
執行簡單SQL語句

        
執行帶參數的SQL語句

        
存儲過程操作    
    }

}

1

 using System;
 
using System.Collections;
 
using System.Collections.Specialized;
 
using System.Data;
 
using System.Data.OleDb;
 
using System.Configuration;
 
   
     
public  class DBHelper
     
{
         
//数据库连接字符串(web.config来配置)
         
//<add key="ConnectionString" value="server=127.0.0.1;database=DATABASE;uid=sa;pwd=" />        
         protected static string connectionString = ConfigurationSettings.AppSettings["ConnectionString"];
      
 
         
执行简单SQL语句
 
         
执行带参数的SQL语句
 
         
存储过程操作
 
     }