ページの先頭行へ戻る
Interstage Shunsaku Data Manager V9.0.6 アプリケーション開発ガイド
FUJITSU Software

H.1 データの検索

データの内容に対して条件を指定して結果を得るためには、Shunsakuが提供するAPIを使用します。

VB .NETでは、以下に示す操作ができます。


VB .NETの詳細については、“.NET APIリファレンス”を参照してください。


ここでは“ホテルの予約状況検索”を例にして、検索操作の説明を行います。

また、検索操作の説明にあたり、以下のXML文書が存在するものとします。

なお、XML文書の詳細については、“付録E XML文書についての留意事項”を参照してください。


ドキュメントサンプル

<document>
    <base>
        <name>ホテル1</name>
        <prefecture>大阪</prefecture>
        <address>大阪府大阪市中央区</address>
        <detail>http://xxxxx.co.jp</detail>
        <price>9000</price>
    </base>
    <information>
        <date>2006年07月18日</date>
    </information>
    <note>バス付 トイレ付 地下鉄 △△駅徒歩02分</note>
</document>
<document>
    <base>
        <name>ホテル2</name>
        <prefecture>大阪</prefecture>
        <address>大阪府大阪市中央区</address>
        <detail>http://xxxxx.co.jp</detail>
        <price>6000</price>
    </base>
    <information>
        <date>2006年07月18日</date>
    </information>
    <note>バス付 トイレ付 地下鉄 △△駅徒歩05分</note>
</document>
<document>
    <base>
        <name>ホテル3</name>
        <prefecture>大阪</prefecture>
        <address>大阪府大阪市中央区</address>
        <detail>http://xxxxx.co.jp</detail>
        <price>7500</price>
    </base>
    <information>
        <date>2006年07月18日</date>
    </information>
    <note>バス付 トイレ付 地下鉄 △△駅徒歩10分</note>
</document>
<document>
    <base>
        <name>ホテル4</name>
        <prefecture>大阪</prefecture>
        <address>大阪府大阪市北区</address>
        <detail>http://xxxxx.co.jp</detail>
        <price>5000</price>
    </base>
    <information>
        <date>2006年07月10日</date>
    </information>
    <note>バス付 トイレ付 地下鉄 ××駅徒歩03分</note>
</document>
<document>
    <base>
        <name>ホテル5</name>
        <prefecture>大阪</prefecture>
        <address>大阪府大阪市北区</address>
        <detail>http://xxxxx.co.jp</detail>
        <price>6000</price>
    </base>
    <information>
        <date>2006年07月10日</date>
    </information>
    <note>バス付 トイレ付 地下鉄 ××駅徒歩02分</note>
</document>
<document>
    <base>
        <name>ホテル6</name>
        <prefecture>神奈川</prefecture>
        <address>神奈川県横浜市港北区</address>
        <detail>http://xxxxx.co.jp</detail>
        <price>8000</price>
    </base>
    <information>
        <date>2006年07月18日</date>
    </information>
    <note>バス付 トイレ付 地下鉄 △△駅徒歩02分</note>
</document>
<document>
    <base>
        <name>ホテル7</name>
        <prefecture>神奈川</prefecture>
        <address>神奈川県横浜市港北区</address>
        <detail>http://xxxxx.co.jp</detail>
        <price>7000</price>
    </base>
    <information>
        <date>2006年07月18日</date>
    </information>
    <note>バス付 トイレ付 地下鉄 △△駅徒歩03分</note>
</document>
<document>
    <base>
        <name>ホテル8</name>
        <prefecture>神奈川</prefecture>
        <address>神奈川県横浜市神奈川区</address>
        <detail>http://xxxxx.co.jp</detail>
        <price>6000</price>
    </base>
    <information>
        <date>2006年07月18日</date>
    </information>
    <note>バス付 トイレ付 地下鉄 △△駅徒歩05分</note>
</document>