用Delphi開發(fā)ASP分頁組件
發(fā)表時間:2024-02-20 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]隨著網(wǎng)絡(luò)技術(shù)的發(fā)展和Internet的普及,Browser/Server在軟件開發(fā)中已成為主流,筆者在開發(fā)一個ERP系統(tǒng)時,就采用了B/S軟件模式,具體架構(gòu)為SQL Server+I(xiàn)IS+I(xiàn)E網(wǎng)頁采用的是Active Server Page文件。由于系統(tǒng)涉及大量的數(shù)據(jù)操作和查詢,若純粹采用ASP...
隨著網(wǎng)絡(luò)技術(shù)的發(fā)展和Internet的普及,Browser/Server在軟件開發(fā)中已成為主流,筆者在開發(fā)一個ERP系統(tǒng)時,就采用了B/S軟件模式,具體架構(gòu)為SQL Server+I(xiàn)IS+I(xiàn)E網(wǎng)頁采用的是Active Server Page文件。由于系統(tǒng)涉及大量的數(shù)據(jù)操作和查詢,若純粹采用ASP腳本語言編寫勢必造成效率低下,為了提高系統(tǒng)的整體效率和安全性,筆者采用了ASP組件來代替ASP腳本語言。
由于Delphi在開發(fā)數(shù)據(jù)庫應(yīng)用系統(tǒng)中具有的強大的功能和極高的效率,所以筆者開發(fā)ASP組件較常用的是Delphi 5.0(當(dāng)然也可采用Visual Basic或VC++開發(fā)ASP組件),Delphi本身在Internet和InternetExpress兩個組件面板提供了眾多的組件可以直接生成Web頁面,但是這些組件都缺少網(wǎng)頁中數(shù)據(jù)顯示常見的分頁功能。眾所周知,ASP是通過建立ADO連接數(shù)據(jù)庫后建立RecordSet對象,然后利用RecordSet的AbsolutePage進(jìn)行頁面定位,而在Delphi 5.0中,已提供了ADO組件封裝了Microsoft的ADO庫,所以同樣具有頁面定位功能。下面筆者將分步來開發(fā)一個通用的顯示分頁Web頁面的ASP組件。
第一步:新建一個Activex Library,命名為PadoPage,然后再新建一個Active Server Object Class,命名為AdoPage,即建立了一個名為AdoPage的ASP組件,文件命名為Adopage.pas。
第二步:打開Type Library,新建一個方法Get_Page,然后在Get_Page加入一個參數(shù)Pconnandsgl,用于傳遞數(shù)據(jù)庫連接語句和SQL語句,參數(shù)選擇為BSTR類型。
第三步:新建一個DataModule,放入Adoconnection組件和AdoQuery組件,將Data Module命名為AdoDataModule。由于新建立的組件中的方法Get_Page要從DataModule中取得數(shù)據(jù),所以需在Adopage.pas的Uses子句中加入AdoDataModule,然后聲明一個數(shù)據(jù)模塊的變量fadodm,同時加入Initialize和Destroy這兩個方法,以便在ASP組作中生成數(shù)據(jù)模塊。Adopage.pas具體代碼如下所示:
unit Adopage;
interface
uses
ComObj, SysUtils, Classes, ActiveX, AspTlb, Pbasedata_TLB, StdVcl, AdoDataModule;
//將AdoDataModule加入USE子句
type
T Adopage = class(TASPObject, Ibasedata)
private
fadodm:TAdoDataModuleform;
protected
procedure OnEndPage; safecall;
procedure OnStartPage(const AScriptingContext: IUnknown); safecall;
procedure get_page(const pconnandsql: WideString); safecall;
public
procedure initialize;override;
destructor destroy;override;
end;
implementation
uses ComServ,forms;
destructor Tadopage.destroy;
begin
inherited;
fadodm.Destroy;
end;
procedure Tadopage.initialize;
begin
inherited;
fadodm:=tadodmform.Create(forms.application);
end;
第四步:建立通用的分頁顯示數(shù)據(jù)的方法get_page,具體代碼如下:
procedure Tadopage.get_page(const pconnandsql: WideString);
var i,j,n:integer;
connstr,sqlstr:widestring;
rs:_recordset;
cur_url:widestring;
page_no:integer;
begin
//首先從傳遞過來的參數(shù)中分別取出連接串和SQL語句
pconnandsql:=uppercase(pconnandsql);
i:=pos('CONNSTR',pconnandsql);
j:=pos('SQLSTR',pconnandsql);
if i=0 or j=0 then
begin
response.write('數(shù)據(jù)庫連接串或SQL語句錯誤!');
abort;
end;
for n:=I+8 to j-1 do
connstr:=connstr+pconnandsql[n];
for n:=j+7 to length(pconnandsql) do
sqlstr:=sqlstr+pconnandsql[n];
//將取得的連接串和SQL語句分別賦給ADOconnection和ADOQuery
fadodm.adoconnection1.connstring:=connstr;
fadodm.adoquery1.sql.add(sqlstr);
//以下為打開數(shù)據(jù)庫并進(jìn)行分頁的過程
try
fadodm.adoquery1.open;
//打開數(shù)據(jù)庫
rs:=fadodm.adoquery1.recordset;
//取得當(dāng)前打開頁面的URL和頁碼
try
if request.servervariable['url'].count>0 then
cur_url:= request.servervariable.item['url'];
if request.querystring['page_no'].count>0 then
page_no:=request.querystring.item['page_no']
else
page_no:=1;
except
end;
rs.pagesize:=20;
//每頁設(shè)為20行
rs.AbsolutePage:=page_no;
//頁面定位
response.write('共'+inttostr(rs.pagecount)+'頁& ');
response.write('第'+inttostr(page_no)+'頁& ');
//對每個頁碼建立超鏈接
for i:=1 to rs.pagecount do
response.write('<a href="'+cur_url+'?page_no='+inttostr(i)+'">'
+inttostr(i)+'</a>');
//數(shù)據(jù)記錄按表格顯示
response.write('<table>');
//取得表格標(biāo)題
response.write('<tr>');
for I:=0 to fadodm.adoquery1.fields.count-1 do
response.write('<td>'+fadodm.adoquery1.fields[i].fieldname+'</td>');
response.write('</tr>');
j:=1
with fadodm.adoquery1 do
while (not eof) and j<=rs.pagesize do
begin
response.write('<tr>');
//取得表格內(nèi)容
for i:=1 to fields.count do
response.write('<td>'+fields[i].asstring+'</td>');
response.write('</tr>');
next;
end;
response.write('</table>');
fadodm.adoquery1.close;
except
response.write('數(shù)據(jù)出錯啦!');
end;
end;
以上即為取得通用分頁數(shù)據(jù)的過程,需要注意的是編譯時部分函數(shù)會出錯,只需在USES子句中加入sysutils、classes和adodb單元即可。
第五步:編譯并注冊adopage組件,即可在ASP代碼中調(diào)用,調(diào)用示例如下:
。%
dim webpageobj
set webpageobj=server.createobject("padopage.adopage")
webpageobj.get_page("conn=provider=SQLOLEDB.1;presist security info=false;
user id=sa;initical catalog=sale_data;data source=(local),
sqlstr=selectfrom customer")
%>
通過以上步驟,我們就順利地利用Delphi開發(fā)出了具有分頁功能的ASP組件了。