Rows to insert/update/delete



Example:

<ROWS>
	<ROW table="persons">
		<FIELD name="_dnet_resource_identifier_">id.0002</FIELD>
		<FIELD name="name">John Smith</FIELD>
		<FIELD name="age" type="int">32</FIELD>
		<FIELD name="appointment" type="date">2011-06-16</FIELD>
	</ROW>
	<ROW table="places">
		<FIELD name="_dnet_resource_identifier_">id.0002</FIELD>
		...
	</ROW>
	<ROW table="organizations" status="deleted">
		<FIELD name="_dnet_resource_identifier_">id.0004</FIELD>
	</ROW>
	...
</ROWS>

Please note:

  1. You can perform insert, update or delete of rows in multiple tables.
  2. Field _dnet_resource_identifier_ is mandatory and must be a valid identifier.
  3. The type of not textual fields must be specified; valid types are: int, float, boolean, date.
  4. A row can be deleted specifying status="deleted".

D-NET Database API 1.0