Skip to content

ako/QueryApiBlogPost

Repository files navigation

Using Mendix query APIs to build reusable microflow actions

The Mendix business modeler support two query languages to retrieve data:

  • Xpath is an easy to use query language
  • OQL is similar to SQL and offers more powerful reporting facilities

You can use these query languages in the Mendix Modeler, but both languages are also available through a Java API. You can use these APIs to implement powerful reusable Microflow actions through the Connector Kit. In addition to Xpath and OQL, the Mendix APIs also enable you to query normal SQL on your Mendix database.

In this blogpost I’ll show you have you can build the following Microflow actions:

  • Retrieve advanced Xpath – returns a list of entities as specified by the Xpath expression,
  • Retrieve advanced OQL – returns a list of entities as specified by a OQL query,
  • Retrieve Dataset OQL - returns a list of entities as specified by a Dataset OQL query
  • Retrieve advanced SQL – returns a list of entities as specified by a SQL query,
  • Create first Monday of month list – returns a list of dates of the first Monday of every month in a specified range.
  • Register global entity listeners - run custom java code for every object change.

Microflow actions toolbox

Retrieve advanced Xpath

The goal is to create a Microflow action where a user can specify an Xpath expression and what result entities are expected. The action will execute the xpath statement and return the resulting list of objects.

In practice, this is not a very useful Microflow action, as you can already do this with the standard Retrieve action in the Mendix modeler. The goal however is to illustrate how you can use the xpath java API.

The java action need the following parameters:

  • A string where the user can specify the xpath expression to be executed.
  • A result entity where the user specifies what entity is to be returned.
  • A return type which specified that the action returns a list with entities specified in the previous parameter.

A type parameter is required so you define that the result list returns objects of the entity specified in the ResultEntity parameter:

Finally, we should define how we want to display the microflow in the microflow toolbox. This consists of a caption, a category and an icon:

The implementation of this java action is pretty straight forward, you can use the Core.retrieveXPathQuery[LINK] API to execute your Xpath expression and return a list of Mendix objects.

The implementation also validates that the list returns contains objects of the entity specified.

Now we have a new Microflow action in the toolbox that we can use in our microflows.

Here’s an example data model with two entities, Department and Employee.

We can drag the java action created above from the toolbox on a microflow. In this example we want to retrieve all Employee objects and return a list of these objects.

Retrieve objects using OQL

The following example illustrates how you can use the OQL APIs to reporting purposes. OQL is the general purpose Mendix query language, very much resembling SQL. Biggest differences between OQL and SQL are:

  • OQL is expressed in entity and attribute names instead of table names and column names. This makes it easier to use as you do not have to know the technical datamodel as stored in the database.
  • OQL is database vendor independent, so you can run the same OQL statement on all databases supported by Mendix.

The following Non-persistent entity shows what data we are interested in for our report:

  • For every department we want to know its name,
  • The birthday of the oldest employee,
  • The birthday of the youngest employee,
  • Total salary for all employees,
  • Avarage salary for all employees,
  • Minimum salary paid per department.

Using OQL you can query this data as follows:

We can create a generic microflow action to execute OQL queries and return a list of objects. The java action has the following parameters:

  • OqlQuery – a string containing the OQL query
  • ResultEntity – what entity will hold the retrieved data
  • A list of the ResultEntity specified as a return type.

As in the xpath example above, a Type parameter is defined to specify that the Return list used the type specified in ResultEntity.

Additionally, we need to expose the java action as a microflow action, provide caption and an icon.

The implementation of the Java action illustrated below does the following:

  • Retrieve all data using Mendix API Core.retrieveOQLDataTable()
  • Loops through all rows, creates a new object of the type specified by the used in ResultEntity. A java action parameter of type Entity results in a java string containing the name of the entity. This can be passed to Core.instantiate to create a new object.
  • Loops through all columns of a record and copy the column value to an attribute with the same name. If an attribute with a column name does not exist, a message is printed, and the loop continues.
  • The Mendix object created is added to the list to be returned.

Note in the domain model screenshot and the OQL screenshot above, the names of the attributes and columns match exactly even on case.

The result is a generic OQL action that you can use in your microflows as follows:

Retrieve objects using OQL specified in a Dataset

Instead of coding the OQL statement in a string parameter, you can also use a Dataset. This has the benefit that Mendix modeler will validate your OQL query.

Now we need to define a java action that will take the name of the dataset. This action will get the OQL of the DataSet, execute it, and return a list of mendix objects.

Microflow to execute the Java action is similar to the previous example, but instead of an OQL query, you specify the name of the Dataset.

The java code to get the Dataset OQL, execute the OQL, and retrieve the Objects. You can use the Core.createOQLTextGetRequestFromDataSet() method to get te OQL query or the Dataset specified.

Retrieving objects using SQL

As of Mendix 7 a new API is available to allow you to execute SQL queries on the application database. (This feature is currently in beta). Using this API, we can create a Microflow action to execute SQL, similar to the action for OQL in the previous section.

The definition of the Java action resembles the OQL action, but instead of a OQL parameter we have a SQL parameter.

The java implementation below uses the following steps:

  • Use the new Core.dataStorage().executeWithConnection() to execute some java statements that receive a jdbc connection from the internal connection pool. The way this API is constructed enables the Mendix platform to guarantee that connections are returned to the pool after usage.

  • With the jdbc connection we can now implement our java as you would with a regular jdbc connection.
  • A prepared statement is created, executed and the resulting records are made available through a ResultSet.

  • Next we loop through all the records in the ResultSet and create a Mendix object as specified by the user with ResultEntity.

You can find the complete java source code on GitHub: [LINK].

We now have a generic SQL action that can be used in microflows to retrieve data from your application database. The query in this example returns the same data as the OQL earlier, so we can reuse the non-persistent entity DepartmentSummary as defined previously.

Please note that in case of SQL statements you need to implement security constraints yourself.

PostgreSQL specific SQL

Using the JDBC connection you can benefit from vendor specific database extension, like Oracle Pl/SQL or Postgres user defined function.

A word of warning: if you use vendor specific database functionality you will not be able to seamlessly deploy your application on other platforms and databases. So we advise you to only use SQL if you have no alternative way of implementing your requirements. I most cases you should be able to use OQL to achieve the same, while keeping your application database independent.

The following example illustrates the use of PostgreSQL specific functionality. It serves as an example of how you can do this, but in this specific case you should prefer an alternative solution, either using microflows or java actions, as that will keep your application database independent.

The requirement for this example is to generate a list of dates for all first Mondays of the months between a range specified by the user.

Our example has a page where a user can enter a start and end date. The microflow triggered by the “Generate first Mondays of the month” button will print all the respective dates.

In postgres we can query a list of the dates of all Mondays between these dates using the following postgres specific query:

  • Using a common table expression (CTE) we create a set of all first dates of every month in the range
  • Using another CTE we determine the dates of the Mondays for these months
  • Finally, we selected these dates if they still fall in range specified.

We create a java action with parameters for the start date and the end date. We have a specific entity to return a list of the dates, Hr.FirstMondayDate.

The java code to implement this action:

  • Specify the required sql statement in the java method. Jdbc queries expect the parameters to be specified by questionmarks (?) in the sql statement.

  • Next we use the Mendix API to execute some statements using the jdbc connection. Here we create a prepared statement, define the jdbc parameter values and execute the sql query.

  • Using the FirstMondayDate java proxy we can instantiate a new Mendix object and set the date attribute.
  • Finally, we need to return the created list of dates.

When you use this in a microflow, you just need to specify the start and end date and the name of the variable that will hold the resulting list. This example iterates through all the data objects in the list and prints the date of that object.

You will see the list of dates in the console.

Global custom entity event listeners

Global entity event listeners enable you to define generic event handlers on all entities. This enables you to build generic validations or create a real-time data export to a central datastore. You can use a Java action to register any desired event handler, most likely in the After App Startup Microflow.

Example code to illustrate how to register the event listener. This code will log old and new attribute value for all changes attributes before making changes in the database:

public java.lang.Boolean executeAction() throws Exception {
    // BEGIN USER CODE
    Core.getListenersRegistry().registerBeforeCommitListener(objects -> {
        ILogNode logger = Core.getLogger("BeforeCommitListener");
        for (IMendixObject obj : objects) {
            logger.info("ObjectType: " + obj.getType());

            List<? extends IMendixObjectMember<?>> changedMembers = obj.getChangedMembers(getContext());

            logger.info(String.format("Has changed members: %b? Number of changed members: %d", obj.isChanged(), changedMembers.size()));
            for (IMendixObjectMember member : changedMembers) {
                logger.info(
                        String.format("Changed member %s : %s -> %s", member.getName(),
                                member.getOriginalValue(getContext()) != null ? member.getOriginalValue(getContext()).toString() : "",
                                member.getValue(getContext()) != null ? member.getValue(getContext()).toString() : ""
                        )
                );
            }
        }
    });
    return true;
    // END USER CODE
}

This example will trigger a listener for every object change before writing the changes to the database. To find out what attributes have been changed, you

About

Example project how to use the Mendix Query APIs

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages