leDb2XML 資料庫轉換成XML檔案例子

2021-04-17 01:17:16 字數 744 閱讀 9224

asp.net dataset讓你在頁面中使用

xml格式的檔案提供了便利。如果您的資料全部都在乙個資料庫中,該如何進行轉換呢?如果你的資料庫與oledb相容的話,下面就看看如何把資料庫中的所有表轉換成

xml檔案。檔案名字與資料庫中的表的名字相同。本**包含兩個版本:c#版本和vb.net版本。

c#版本:[ledb2

xmlcs.aspx" target="_blank">測試]

<%@ page language="c#" %><%@ import namespace="system" %><%@ import namespace="system.data" %><%@ import namespace="system.data.oledb" %>
vb.net版本:[ledb2

xmlvb.aspx" target="_blank">測試]

<%@ import namespace="system.data.oledb" %><%@ import namespace="system.data" %><%@ import namespace="system" %><%@ page language="vb" %>

對於資料量大的資料庫,處理可能會需要更多的時間,因此有可能需要更改machine.config檔案中proces**odel的responsedeadlockinterval 屬性,比如為5分鐘,預設為3分鐘。

DELPHI 把資料庫中的資料轉換成XML格式

function replacestring astring string string begin result stringreplace astring,rfreplaceall result stringreplace result,rfreplaceall result stringrep...

php將資料庫中的資料轉換成xml格式的

php將資料庫中的內容轉換成xml格式的 db host localhost 資料庫位置 db user root 使用者名稱 db password 123456 密碼 db name test 資料庫名稱 link mysql connect db host,db user,db passwor...

SQL 資料庫行轉換成列

id imame idvalue 1 name1 10 1 name2 20 2 name1 10 2 name2 20 2 name3 30 select id sum case idname when name1 then idvalue else 0 end as name1,sum case...