summaryrefslogtreecommitdiffstats
path: root/tags/java-stable-20060304/das/rdb/src/test/resources/CustOrdersConnectionProps.xml
blob: a103f7a9d49df77703f472d7c200779841264e51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?xml version="1.0" encoding="UTF-8"?>
<Config xsi:noNamespaceSchemaLocation="http:///org.apache.tuscany.das.rdb/config.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    
    <Command name="all customers" SQL="select * from CUSTOMER" kind="Select"/>
    
    <Command name="customer and orders"
        SQL="select * from CUSTOMER left join ANORDER on CUSTOMER.ID = ANORDER.CUSTOMER_ID where CUSTOMER.ID = :ID"
        kind="Select">
        <Parameter name=":ID"/>
    </Command>
    
    <Command name="customer and orders"
        SQL="select * from CUSTOMER left join ANORDER on CUSTOMER.ID = ANORDER.CUSTOMER_ID where CUSTOMER.ID = :ID"
        kind="Select">
        <Parameter name=":ID"/>
    </Command>
    
    <!-- Test usage of '?' rather than named parameter -->
    <Command name="order by id with ?" SQL="select * from ANORDER where ANORDER.ID = ?"
        kind="Select">
        <Parameter name=":ID"/>
    </Command>
    
    <Command name="update customer"
        SQL="update CUSTOMER set LASTNAME = 'Pavick' where ID = :ID"
        kind="Update">
        <Parameter name=":ID"/>
    </Command>
    
    <ConnectionProperties driverClassName="org.apache.derby.jdbc.EmbeddedDriver"
        driverURL="jdbc:derby:dastest"/>
    
    <Table name="CUSTOMER">
        <Column name="ID" primaryKey="true"/>
    </Table>
    
    <Table name="ANORDER">
        <Column name="ID" primaryKey="true"/>
    </Table>
    
    <Relationship name="orders" primaryKeyTable="CUSTOMER"
        foreignKeyTable="ANORDER" many="true">
        <KeyPair primaryKeyColumn="ID" foreignKeyColumn="CUSTOMER_ID"/>
    </Relationship>
    
</Config>