web-dev-qa-db-ja.com

jDBIでインクエリを行う方法は?

このようなものをjDBIでどのように実行できますか?

_@SqlQuery("select id from foo where name in <list of names here>")
List<Integer> getIds(@Bind("nameList") List<String> nameList);
_

テーブル:foo(id int,name varchar)

MyBatisの@SelectProviderに似ています。

同様の質問が尋ねられました JDBIのSQLオブジェクトAPIを使用して実行時に動的SQLクエリを作成するにはどうすればよいですか? ですが、どういうわけか答えがわかりません。

33
Mohit Verma

これはうまくいくはずです:

@SqlQuery("select id from foo where name in (<nameList>)")
List<Integer> getIds(@BindIn("nameList") List<String> nameList);

このメソッドを含むクラスに注釈を付けることを忘れないでください:

@UseStringTemplate3StatementLocator

アノテーション(JDBIは内部でApache StringTemplateを使用してこのような置換を行うため)。また、この注釈を使用すると、エスケープせずにSQLクエリで「<」文字を使用できないことに注意してください(これは、StringTemplateで使用される特別な記号であるため)。

34
Deinlandel

@Defineアノテーションを使用して、jDBIで動的クエリを構築します。例:

@SqlUpdate("insert into <table> (id, name) values (:id, :name)")
public void insert(@Define("table") String table, @BindBean Something s);

@SqlQuery("select id, name from <table> where id = :id")
public Something findById(@Define("table") String table, @Bind("id") Long id);
8
Raven

PostgreSQLでは、ANY比較を使用してコレクションを配列にバインドし、これを実現することができました。

public interface Foo {
    @SqlQuery("SELECT id FROM foo WHERE name = ANY (:nameList)")
    List<Integer> getIds(@BindStringList("nameList") List<String> nameList);
}

@BindingAnnotation(BindStringList.BindFactory.class)
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.PARAMETER})
public @interface BindStringList {
    String value() default "it";

    class BindFactory implements BinderFactory {
        @Override
        public Binder build(Annotation annotation) {
            return new Binder<BindStringList, Collection<String>>() {
                @Override
                public void bind(SQLStatement<?> q, BindStringList bind, Collection<String> arg) {
                    try {
                        Array array = q.getContext().getConnection().createArrayOf("varchar", arg.toArray());
                        q.bindBySqlType(bind.value(), array, Types.ARRAY);
                    } catch (SQLException e) {
                        // handle error
                    }
                }
            };
        }
    }
}

注意:ANYはANSI SQL標準の一部ではないため、PostgreSQLへの強い依存関係が生じます。

6

JDBI 3 Fluent APIを使用している場合は、bindList()を属性とともに使用できます。

List<String> keys = new ArrayList<String>()
keys.add("user_name");
keys.add("street");

handle.createQuery("SELECT value FROM items WHERE kind in (<listOfKinds>)")
      .bindList("listOfKinds", keys)
      .mapTo(String.class)
      .list();

// Or, using the 'vararg' definition
handle.createQuery("SELECT value FROM items WHERE kind in (<varargListOfKinds>)")
      .bindList("varargListOfKinds", "user_name", "docs", "street", "library")
      .mapTo(String.class)
      .list();

クエリ文字列が通常の<listOfKinds>ではなく:listOfKindsを使用していることに注意してください。

ドキュメントはこちら: http://jdbi.org/#_binding_arguments

0
Alex Spurling