Version v1.0-RC1 of the documentation is no longer actively maintained. The site that you are currently viewing is an archived snapshot. For up-to-date documentation, see the latest version.
SCRIPTクエリ
任意のSQLスクリプトを表すクエリ
概要
SCRIPTクエリは任意のSQLスクリプトを表します。
executeScript
実行したいSQLスクリプトをexecuteScript
に渡します。
クエリ実行時にキーが重複した場合、org.komapper.core.UniqueConstraintException
がスローされます。
val query: Query<Unit> = QueryDsl.executeScript("""
drop table if exists example;
create table example (id integer not null primary key, value varchar(20));
insert into example (id, value) values(1, 'test');
""".trimIndent())
options
クエリの挙動をカスタマイズするにはoptions
を呼び出します。
ラムダ式のパラメータはデフォルトのオプションを表します。
変更したいプロパティを指定してcopy
メソッドを呼び出してください。
val query: Query<Unit> = QueryDsl.executeScript("""
drop table if exists example;
create table example (id integer not null primary key, value varchar(20));
insert into example (id, value) values(1, 'test');
""".trimIndent()).options {
it.copty(
queryTimeoutSeconds = 5
)
}
指定可能なオプションには以下のものがあります。
- queryTimeoutSeconds
- クエリタイムアウトの秒数です。デフォルトは
null
でドライバの値を使うことを示します。 - suppressLogging
- SQLのログ出力を抑制するかどうかです。デフォルトは
false
です。 - separator
- SQLステートメントの区切り文字です。デフォルトは
;
です。
executionOptions の同名プロパティよりもこちらに明示的に設定した値が優先的に利用されます。
最終更新 March 27, 2022: Improve Japanese titles (f8384c5)