mybatis-dynamic-sql icon indicating copy to clipboard operation
mybatis-dynamic-sql copied to clipboard

SQL DSL (Domain Specific Language) for Kotlin and Java. Supports rendering for MyBatis or Spring JDBC Templates

Results 13 mybatis-dynamic-sql issues
Sort by recently updated
recently updated
newest added

Fixes an issue I had when defining the `HandbrakeCLIPath` as an option, it would attempt to add it as a spawn argument and caused Handbrake to error and die. Fix,...

We should upgrade handbrake-js to use [the latest HandbrakeCLI](https://github.com/HandBrake/HandBrake/releases). Since we're upgrading from HandbrakeCLI v1.3 to v1.5 there will be a high risk of breaking changes, so this update will...

enhancement
good first issue

This code, which works in a dev build, throws a path error in a production build: ``` const options = { input: file.path, output: '../video_crunched.mp4', width: 1280, height: 720 }...

help wanted

This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more. This repository currently has no open or pending branches. ## Detected dependencies github-actions .github/workflows/ci.yaml...

It's been posted [here](https://github.com/mybatis/mybatis-dynamic-sql/issues/228) two years ago. But I don't think `isInRequired` or `withListEmptyCallback` is a good solution.Because if we can remember to use `isInRequired`,of course we can also remember...

enhancement

Firstly thank you very much to build such useful framework. I am using it in my project. I have a use case for data privilege, for the same statement different...

Oracle has optimizer hint feature on select statements , add ability to provide this hits here is an example of **PARALLEL** hint ``` SELECT /*+ PARALLEL(4) */ customers.cust_first_name, customers.cust_last_name, MAX(QUANTITY_SOLD),...

I'm using MyBatis Dynamic SQL with MySQL, and would like to know whether there are any methods to handle duplicates, such that I can do something similar to: `INSERT INTO...

Is there any details why not support ‘having’? And how to extend ‘Mybatis Dynamic SQL’ to support having?

enhancement

Is it possible to perform update by joining with another table? I don't see such a capability. Can someone help with this? I don't want to do sub query as...