Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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
Expand Down