Skip to main content
Version: v11.6.2

Database Services


A database is the most common form of data storage for any enterprise and apps need to interact with these databases to define the workflow.

WaveMaker makes it easy to create web-based forms that are connected to an underlying database. To access a database from your WaveMaker application, you first create a new data model or import an existing data model into the project.

Import or creation of database within a WaveMaker app results in the generation of REST APIs. Each of the services integrated into your app is converted to a RESTful service and is consumed through their respective REST APIs. These REST APIs are exposed via the API Designer and can be tested and reconfigured as per the application needs.

WaveMaker DB Integration Process

The following figure gives an overview of the Database integration process within WaveMaker App.

  1. Database Schema from an external RDBMS is imported into the app. This import includes the Data Model consisting of Tables, Columns, Relationships between tables and Constraints.
  2. An ORM layer is auto-generated from the above DB Schema using Hibernate and JPA. A service layer is also auto-generated using Spring.
  3. You, as an App Developer, can access the Entities from the ORM Layer, write custom queries, procedures and Java Services to extend the database functionality.
  4. For each entity, query, procedure and Java service, a REST API is auto-generated using Spring-REST and Swagger.
  5. Variables need to be created to interact with the REST API layer to access the database services. These variables will, in turn, be bound to Widgets to allow user interaction with the data.

DB Workflow

When you integrate your WaveMaker app with any database, you set up the connection details and enable your app to interact with the Database. There are two forms of Database interaction:

  • during design time to generate files for use within the app, and
  • during runtime to access the data and work with it.

Design Time Studio App behavior: From the WaveMaker app:

  1. when you add DB to WaveMaker app, it results in a request for metadata to the corresponding external Database, based upon the connection settings,
  2. the external Database returns the metadata,
  3. this returned metadata is used to generate files which will be used within the app.

Note: The database is not replicated or copied into the Studio.

Run Time Studio App behavior: During the run mode, when database call is triggered by user interaction:

  1. a database call in the form of a CRUD operation is made by the app
  2. the call is forwarded to the external Database with the help of the generated files

For an in-depth understanding of the ORM layers generated, their functionality and code generated for the Database Integration, refer to ORM Artifacts.

WaveMaker Supported Databases and their Versions

WaveMaker supports the following databases and versions and the same can be used within your app.

Database NameVersionDriver Jar
10.2Available in Maven Repo
mysql5.5Available in Maven Repo
5.6
5.7
PostgreSQL PostgreSQL9.4Available in Maven Repo
9.5
Oracle11.2download ojdbc6.jar from here
12.1download ojdbc7.jar from here
12.2download ojdbc8.jar from here
SQLServer SQL Server2014Steps to Download sqljdbc4.2.jar
(you can use JDBC driver 4.2, 6.0, 6.1 or 6.2, ensure that you import  sqljdbc42.jar or any Java ver 8 compatible jar file)
Azure SQL Database Connect to Azure
DB210.1db2jcc4.jar
11.1
HSQLDB2.3.3Available in Maven Repo
2.3.4