Updated APIv5 Query API (markdown)

Aurora Lahtela 2022-12-11 10:10:14 +02:00
parent d6faa5bda2
commit 53d22b8c25
1 changed files with 2 additions and 2 deletions

@ -48,9 +48,9 @@ boolean hasColumn = queryService.getCommonQueries().doesDBHaveTableColumn(tableN
Any method called in `CommonQueries` blocks the thread.
In order to perform queries in the correct SQL dialect, you might need the following code. Please note that H2 has MySQL compatibility mode engaged.
In order to perform queries in the correct SQL dialect, you might need the following code.
```java
String dbType = queryService.getDBType(); // H2, SQLITE, MYSQL
String dbType = queryService.getDBType(); // SQLITE, MYSQL
```
## Performing queries