ScalarDB SQL API ガイド
このガイドでは、ScalarDB SQL API の使用方法について説明します。
プロジェクトに ScalarDB SQL API を追加する
Gradle を使用して ScalarDB SQL API への依存関係を追加するには、次のコードを使用します。<VERSION>
は、使用している ScalarDB SQL API と関連ライブラリのバージョンに置き換えてください。
dependencies {
implementation 'com.scalar-labs:scalardb-sql:<VERSION>'
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:<VERSION>'
}
Maven を使用して依存関係を追加するには、以下を使用します (...
を使用している ScalarDB SQL API のバージョンに置き換えます)。
<dependencies>
<dependency>
<groupId>com.scalar-labs</groupId>
<artifactId>scalardb-sql</artifactId>
<version>...</version>
</dependency>
<dependency>
<groupId>com.scalar-labs</groupId>
<artifactId>scalardb-cluster-java-client-sdk</artifactId>
<version>...</version>
</dependency>
</dependencies>
SqlSessionFactory
ScalarDB SQL API では、SqlSessionFactory
でインスタンス化された SqlSession
インスタンスを通じてすべての操作を実行します。このセクションでは、それらの使用方法を説明します。
SqlSessionFactory
を説明する前に、接続モードとトランザクションモードについて説明します。
トランザクションモード
また、ScalarDB SQL には、トランザクション モードと 2 フェーズコミットトランザクション モードの 2 つのトランザクションモードがあります。
トランザクションモードでは、ユーザーには commit
インターフェイスのみが公開され、バックグラウンドで 2 フェーズコミットが実行されます。一方、2 フェーズコミットトランザクションモードでは、ユーザーに 2 フェーズコミットスタイルのインターフェイス (prepare
と commit
) が公開されます。
デフォルトのトランザクションモードは、設定ファイルで指定するか、SqlSessionFactory
をビルドするときに指定できます。
また、SqlSession
の setTransactionMode()
メソッドを使用して変更することもできます。
SqlSessionFactory をビルドする
次のように、プロパティファイルを使用して SqlSessionFactory
をビルドできます。
SqlSessionFactory sqlSessionFactory = SqlSessionFactory.builder()
.withPropertiesFile("<your configuration file>")
// If you need to set custom properties, you can specify them with withProperty() or withProperties()
.withProperty("<custom property name>", "<custom property value>")
.build();
設定の詳細については、ScalarDB Cluster SQL クライアント設定を参照してください。
SqlSession インスタンスを取得する
次のように、SqlSessionFactory
を使用して SqlSession
インスタンスを取得できます。
SqlSession sqlSession = sqlSessionFactory.createSqlSession();
SqlSession
はスレッドセーフではないことに注意してください。
複数のスレッドから同時に使用しないでください。
SqlSession インスタンスを閉じる
SqlSession
インスタンスですべての操作が完了したら、SqlSession インスタンスを閉じる必要があります。
sqlSession.close();
SqlSessionFactory インスタンスを閉じる
sqlSessionFactory
も、不要になったら閉じる必要があります。
sqlSessionFactory.close();
SQL を実行する
次のように SqlSession
を使用して SQL を実行できます。
ResultSet resultSet = sqlSession.execute("<SQL>");
次のように SqlSession
を使用して Statement
オブジェクトを実行することもできます。
// Build a statement
Statement statement = StatementBuilder.<factory method>...;
// Execute the statement
ResultSet resultSet = sqlSession.execute(statement);
Statement
オブジェクトは、対応する SQL のファクトリメソッドを持つ StatementBuilder
によって構築できます。
詳細については、StatementBuilder
の Javadoc および ScalarDB SQL 文法を参照してください。
ResultSet オブジェクトの処理
SQL 実行の結果として、SqlSession
は ResultSet
オブジェクトを返します。
ここでは、ResultSet
オブジェクトの処理方法について説明します。
ResultSet
オブジェクトから結果を1つずつ取得する場合は、次のように one()
メソッドを使用できます。
Optional<Record> record = resultSet.one();
または、すべての結果を List
として一度に取得したい場合は、次のように all()
メソッドを使用できます。
List<Record> records = resultSet.all();
また、ResultSet
は Iterable
を実装しているので、次のように for-each ループで使用できます。
for (Record record : resultSet) {
...
}
ResultSet
オブジェクトのメタデータを取得する場合は、次のように getColumnDefinitions()
メソッドを使用できます。
ColumnDefinitions columnDefinitions = resultSet.getColumnDefinitions();
詳細については、ColumnDefinitions
の Javadoc を参照してください。
Record オブジェクトの処理
前述のように、ResultSet
オブジェクトは、データベースのレコードを表す Record
オブジェクトを返します。
次のように、getXXX("<column name>")
メソッドまたは getXXX(<column index>)
メソッド (XXX は型名) を使用して結果の列値を取得できます。
// Get a Boolean value of a column
boolean booleanValueGottenByName = record.getBoolean("<column name>");
boolean booleanValueGottenByIndex = record.getBoolean(<column index>);
// Get an Int value of a column
int intValueGottenByName = record.getInt("<column name>");
int intValueGottenByIndex = record.getInt(<column index>);
// Get a BigInt value of a column
long bigIntValueGottenByName = record.getBigInt("<column name>");
long bigIntValueGottenByIndex = record.getBigInt(<column index>);
// Get a Float value of a column
float floatValueGottenByName = record.getFloat("<column name>");
float floatValueGottenByIndex = record.getFloat(<column index>);
// Get a Double value of a column
double doubleValueGottenByName = record.getDouble("<column name>");
double doubleValueGottenByIndex = record.getDouble(<column index>);
// Get a Text value of a column
String textValueGottenByName = record.getText("<column name>");
String textValueGottenByIndex = record.getText(<column index>);
// Get a Blob value of a column (as a ByteBuffer)
ByteBuffer blobValueGottenByName = record.getBlob("<column name>");
ByteBuffer blobValueGottenByIndex = record.getBlob(<column index>);
// Get a Blob value of a column as a byte array
byte[] blobValueAsBytesGottenByName = record.getBlobAsBytes("<column name>");
byte[] blobValueAsBytesGottenByIndex = record.getBlobAsBytes(<column index>);
列の値が null かどうかを確認する必要がある場合は、isNull("<列名>")
または isNull(<列インデックス>)
メソッドを使用できます。
// Check if a value of a column is null
boolean isNullGottenByName = record.isNull("<column name>");
boolean isNullGottenByIndex = record.isNull(<column index>);
詳細については、Record
の Javadoc も参照してください。
準備済みステートメント
アプリケーションで複数回実行されるクエリには、PreparedStatement
を使用できます。
PreparedStatement preparedStatement = sqlSession.prepareStatement("<SQL>");
ResultSet result = preparedStatement.execute();
同じクエリを2回目以降に実行すると、キャッシュされた事前解析済みステートメントオブジェクトが使用されます。
したがって、クエリを複数回実行すると、PreparedStatement
を使用するとパフォーマンス上の利点が得られます。
クエリを1回だけ実行する場合、準備済みステートメントは余分な処理が必要になるため非効率的です。
その場合は、代わりに sqlSession.execute()
メソッドの使用を検討してください。
また、バインドパラメータで PreparedStatement
を使用することもできます。
パラメータは、位置指定または名前付きのいずれかになります。
// Positional parameters
PreparedStatement preparedStatement1 =
sqlSession.prepareStatement("INSERT INTO tbl (c1, c2) VALUES (?, ?)");
// Named parameters
PreparedStatement preparedStatement2 =
sqlSession.prepareStatement("INSERT INTO tbl (c1, c2) VALUES (:a, :b)");
最初にパラメータを設定して実行することができます:
// Positional setters
preparedStatement1
.setInt(0, 10)
.setText(1, "value")
.execute();
// Named setters
preparedStatement2
.setInt("a", 10)
.setText("b", "value")
.execute();
詳細については、PreparedStatement
の Javadoc も参照してください。