Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm adding some simple sql statements for database management, but I'm not seeing them generate anywhere that I can use them.
getUserVersion: PRAGMA user_version; setUserVersion: PRAGMA user_version=?1;
A workaround that is a little ugly:
db.getConnection() .prepareStatement("PRAGMA user_version;", SqlPreparedStatement.Type.EXECUTE, 0) .executeQuery() .getLong(0)!! db.getConnection() .prepareStatement( "PRAGMA user_version=${QueryWrapper.Schema.version};", SqlPreparedStatement.Type.EXECUTE, 0 ) .execute()
The text was updated successfully, but these errors were encountered:
Going to track pragma statements which return values separately: #1106
Sorry, something went wrong.
No branches or pull requests
I'm adding some simple sql statements for database management, but I'm not seeing them generate anywhere that I can use them.
A workaround that is a little ugly:
The text was updated successfully, but these errors were encountered: