可移植的資料庫

2022-02-20 16:34:23 字數 1924 閱讀 7670

web.config裡面:

fdatatype類

using system;

using system.data;

using system.configuration;

using system.web;

using system.web.security;

using system.web.ui;

using system.web.ui.webcontrols;

using system.web.ui.webcontrols.webparts;

using system.web.ui.htmlcontrols;

using system.data.oledb;

using system.data.sqlclient;

//using system.data.oracleclient; //我機器上沒裝oracle,無法給大家演示,但是原理是一樣就做出來了

///

/// 向應用程式的較高階別隱藏與建立特定型別(來自特定的資料提供程式)的例項有關的細節,應用程式現在可以使用通過基本介面公開的一般行為與資料來源進行互動。

/// 天轟穿 www.thc123.com

///

namespace sao

///

/// 公用引數的型別集

///

public enum parametertype

public class fdatatype

///

/// 建立並初始化connection連線例項

///

/// 資料提供程式型別

/// 返回乙個已經建立好的資料庫連線例項

public static idbconnection createconnection(databasetype dbtype)

return con;

}///

/// 建立並初始化command例項

///

/// sql查詢語句或儲存過程名稱

/// 資料提供程式型別

/// 資料庫連線例項

/// 返回乙個已經建立好的command例項物件

public static idbcommand createcommand(string querystring, databasetype dbtype,idbconnection con)

return cmd;

}///

/// 建立並初始化乙個dataadapter物件

///

/// command例項物件

/// 資料提供程式型別

/// 返回乙個已經建立好的dataadapter物件

public static idbdataadapter createdataadapter(idbcommand cmd, databasetype dbtype)

return ida;}}

}-----------------------------------------

fdataset類

using system;

using system.data;

using system.configuration;

using system.web;

using system.web.security;

using system.web.ui;

using system.web.ui.webcontrols;

using system.web.ui.webcontrols.webparts;

using system.web.ui.htmlcontrols;

namespace sao

//得到我們在web.config檔案中設定的資料庫提供程式

public dataset tds()}}

資料庫的移植 同種資料庫的移植

首先 同種資料庫的移植 比如 mysql mysql sqlserver sqlserver oracle oracle 提供兩種方法進行移植 但是思路都是相同的 匯出資料庫表 移植 建立新的資料庫 匯入新的資料庫表資訊 不同的資料庫用不同的方式進行操作 比如 mysql 匯出資料表和資料 mysq...

不同資料庫移植移植方法一 二

當我們把有些應用寫到儲存過程中,或者是呼叫與系統相關的函式,此時想把當前系統移值到其它的資料庫上,這個往往是非常頭痛的問題,因為不同的系統支援不同的儲存過程,如oracle和sybase。1 採用中間對照表。將sybase中常用的函式與oracle中相對的函式相對應,如果有的那是肯定非常好,都不用更...

移植postgresql資料庫方法

建立資料庫可以通過命令createdb db name 或者是 create database db name命令建立,除此之外,也可以通過資料庫原始檔移植的方法進行建立。我們知道postgresql資料庫的原始檔是放在postgresql目錄下的,postgresql目錄下的base目錄的下一層就...