Code からの接続
このセクションでは、JDBC DriverManager またはSquareDataSource インターフェースに接続する方法について説明します。
DriverManager で接続
DriverManager クラスを使用して接続する場合、CData JDBC Driver for Square はJDBC 規則に従います。最初にSquare ドライバークラスをロードします。次に、接続を作成します。
ドライバーのロード
JDBC 4.0仕様では、次の手順はオプションです。Class.forName("cdata.jdbc.square.SquareDriver");
接続の確立
静的なDriverManager クラスのgetConnection メソッドで接続文字列を指定します。接続文字列を"jdbc:square:" で始めます。一般的な接続文字列は以下のとおりです。
Connection conn = DriverManager.getConnection("jdbc:square:InitiateOAuth=GETANDREFRESH;OAuthClientId=MyApplicationId;OAuthClientSecret=MyApplicationSecret;CallbackURL=http://localhost:33333;LocationId=MyDefaultLocation");または、Properties オブジェクトを使用して接続オプションを準備できます。Properties オブジェクトをDriverManager に渡します。
Properties prop = new Properties(); prop.setProperty("InitiateOAuth","GETANDREFRESH"); prop.setProperty("OAuthClientId","MyApplicationId"); prop.setProperty("OAuthClientSecret","MyApplicationSecret"); prop.setProperty("CallbackURL","http://localhost:33333"); prop.setProperty("LocationId","MyDefaultLocation"); Connection conn = DriverManager.getConnection("jdbc:square:",prop);
SquareDataSource クラスで接続
以下の例に示すように、SquareDataSource クラスを使用してプールされた接続を作成できます。詳しくは、接続プール を参照してください。
次の例は、プールされたConnection オブジェクトをインスタンス化します。
SquareDataSource ds = new SquareDataSource("jdbc:square:UseConnectionPooling=true;InitiateOAuth=GETANDREFRESH;OAuthClientId=MyApplicationId;OAuthClientSecret=MyApplicationSecret;CallbackURL=http://localhost:33333;LocationId=MyDefaultLocation");
Connection conn = ds.getConnection();