Hello Everyone
I’ve got a problem. My “update insert”-statement doesn’t work and i’ve got no idea why…
my schema looks like:
<?xml version = "1.0" encoding = "UTF-8"?><xs:schema xmlns:tsd = “http://namespaces.softwareag.com/tamino/TaminoSchemaDefinition” xmlns:xs = “http://www.w3.org/2001/XMLSchema”>
xs:annotation
xs:appinfo
<tsd:schemaInfo name = “Mensch”>
<tsd:collection name = “Person”></tsd:collection>
<tsd:doctype name = “Schueler”>
tsd:logical
tsd:contentclosed</tsd:content>
</tsd:logical>
</tsd:doctype>
</tsd:schemaInfo>
</xs:appinfo>
</xs:annotation>
<xs:element name = “Schueler”>
xs:complexType
xs:sequence
<xs:element ref = “Name”></xs:element>
<xs:element ref = “Vorname”></xs:element>
<xs:element ref = “Bemerkung” minOccurs = “0” maxOccurs = “unbounded”></xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name = “Name” type = “xs:string”></xs:element>
<xs:element name = “Vorname” type = “xs:string”></xs:element>
<xs:element name = “Bemerkung” type = “xs:string”></xs:element>
</xs:schema>
[/list]
the statement looks like:
update insert
aaa
aa
a
into input()/sem03
I can start the statement but now row is inserted in the database.
I also don’t get an error. So i don’t have any idea why.
the way, I get there
- create a database [sem03] - standard formatings
- create schema (see top)
- define the schema to the database
- validate tsd schema (on the database) - no errors occurs
- update insert statement (see top) - settings Server:http://192.168.0.88/tamino Database:sem03 Collection:Person
thanks for your responding.