diff --git a/content/en/docs/refguide/modeling/domain-model/oql/oql-statements.md b/content/en/docs/refguide/modeling/domain-model/oql/oql-statements.md index 2143b2ffea2..9f1e9b7caaa 100644 --- a/content/en/docs/refguide/modeling/domain-model/oql/oql-statements.md +++ b/content/en/docs/refguide/modeling/domain-model/oql/oql-statements.md @@ -7,14 +7,12 @@ aliases: - /refguide/oql-delete-statement/ --- -{{% alert color="warning" %}} This feature is experimental. For more information, see [Release Status](/releasenotes/release-status/). {{% /alert %}} - ## Introduction OQL statements are translated to SQL statements that are sent to the database. This can be much faster than retrieving the objects in a microflow and then updating or deleting the resulting list. -This feature is experimental and currently only accessible through the Java API by writing a Java action. +This feature is currently only accessible through the Java API by writing a Java action. {{% alert color="info" %}} From Mendix version 11.1, you can delete objects in bulk using OQL `DELETE` statements. @@ -25,6 +23,8 @@ From Mendix version 11.4, you can update object associations as well as attribut From Mendix version 11.6, you can insert new objects with attributes in bulk using OQL `INSERT` statements. +Before Mendix version 11.10, this feature was considered experimental. From Mendix version 11.10, it is available normally. + {{% /alert %}} ## Java API for OQL updates