summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/tags/java-stable-20060304/das/rdb/src/test/resources/basicCustomerMappingWithInvalidCUD.xml
blob: 8acf38db90202b5a7d4df48cad5b71189c099a23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0" encoding="ASCII"?>
<Config xsi:noNamespaceSchemaLocation="http:///org.apache.tuscany.das.rdb/config.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

  <Table name="CUSTOMER"
	  create="insert into customer blah values (:ID, :LASTNAME, :ADDRESS)"
	  update="update customer blah set lastname = :LASTNAME, address = :ADDRESS where ID = :ID"
      delete="delete from customer blah where ID = :ID">
    <Column name="ID" primaryKey="true"/>
    <Column name="LASTNAME"/>
    <Column name="ADDRESS"/> 
  </Table>
	
</Config>