【PB】powerbuilder中xml的應用一例

灰色軌跡發表於2012-07-18
powerbuilder中的資料視窗真是好的不得了,工作基本上都是圍繞它做,很高效,這幾天專案上需要用匯出xml檔案,就用pb9(xml匯出匯入功能是從powerbuilder9.0增加的功能)做了一個demo以驗證可行性

示例檔案如下(不貼DTD了,舉簡單例子說明一下)
<trans>
<transdetail>
<order><date/></order>
<orderdetail><product/></orderdetail>
<orderdetail><product/></orderdetail>
</transdetail>
<transdetail>
<order><date/></order>
<orderdetail><product/></orderdetail>
<orderdetail><product/></orderdetail>
</transdetail>
</trans>
我的表結構,我想大家的表也應該都是這樣設計的
order(銷售訂單,包括客戶,日期等資訊)
orderdetail(銷售訂單明細,包括產品,數量及價格資訊)

至此,可能明眼人一眼就能看出,這個xml的格式設定有些問題,例如這樣可能更加合理
<trans>
<!--transdetail 這個節或許是多餘的-->
<order>
<date/>
<detail><!-- 明細是一個訂單的一部分,不應該脫離訂單頭-->
<orderdetail><product/></orderdetail>
<orderdetail><product/></orderdetail>
</detail>
</order>
<order>
<date/>
<detail>
<orderdetail><product/></orderdetail>
<orderdetail><product/></orderdetail>
</detail>
</order>
</trans>
不過人家是ZF部門,改不了的,所以蹩腳也得做

pb9中的處理程式碼:其實在pb9種只寫了三行程式碼,真正的程式碼其實只有一行,就是增加了一個視窗,上面放了一個資料視窗,一個按鈕,按鈕裡寫了這麼一行程式碼,呵呵
dw_export.saveas("c:/test.xml",xml!,false)

其實真正要處理的是定義個兩個資料視窗,主要是定義他們的xml模版:
d_order(訂單頭資料出口,第二行程式碼,可以在EITX中設定)
1.新建資料視窗(這裡注意,如果如何條件的資料有多行時,最好在SQL中進行group,否則生成的資料會有重複)
3.在export/import template xml(下面簡稱EITX)編輯區點右鍵,save as另一個名字
4.把data export下的use template設定為你剛剛儲存的模版名
定義好的模版如下所示:
<?xml version=~"1.0~" encoding=~"gb2312~" standalone=~"no~"?>
<trans>
<transdetail __pbband=~"detail~"><!-- 在EITX中的transdetail節上點右鍵選中"starts detail" [注1] -->
<order>
<date>order_date</date>
</order>
dw_detail <!-- 在EITX中的transdetail節上點右鍵選"add child"下的"datawindow control refrence" [注2] -->
</transdetail>
</trans>
有兩點需要注意
[注1]這個start detail,將控制資料的迴圈,所以需要選中,但是每個xml只能定義一個,這裡就會產生一個問題,如果我訂單頭迴圈後,如何再讓訂單明細迴圈,結論是,在一個資料視窗中無法實現,必須分資料視窗進行處理,也就有了注2
[注2]我們需要在d_order中插入一個report,也就是d_orderdetail,在d_order中的control list(同在datawindow control refrence中相同)中就是dw_detail(預設名稱是dw_1,我改名了)

d_orderdetail(訂單明細資料出口,也就是上面report,dw_detail引用的資料視窗,第三行程式碼,可以在EITX中設定)
1.新建資料視窗
2.在export/import template xml(下面簡稱EITX)編輯區點右鍵,save as另一個名字
3.把data export下的use template設定為你剛剛儲存的模版名
<?xml version=~"1.0~" encoding=~"gb2312~" standalone=~"no~"?>
<detail><!-- 這兒定義為orderdetail是沒用的,牽套時,會被忽略 [注3]-->
<orderdetail __pbband=~"detail~"><!-- [注4] -->
<product>product_name</product>
</orderdetail>
</detail>
[注3]注意,當我們在d_order中匯出xml時,d_orderdetail中的xml宣告和頂節點會被忽略
[注4]這個地方定義的就是orderdetail部分,因為一個訂單可能會有多條明細資訊,所以我們需要設定為start detail,也就是迴圈。

最後生成的檔案如下
<trans>
<transdetail>
<order><date>20080101</date></order>
<orderdetail><product>甲</product></orderdetail>
<orderdetail><product>已</product></orderdetail>
</transdetail>
<transdetail>
<order><date>20080102</date></order>
<orderdetail><product>甲</product></orderdetail>
<orderdetail><product>丙</product></orderdetail>
</transdetail>
</trans>

注:如果讓你設計一個xml介面檔案,請一定要考慮使用者的方便性

相關文章