use of org.firebirdsql.gds.ng.wire.FbWireDatabase in project jaybird by FirebirdSQL.
the class TestV12Database method checkCancelOperationSupported.
private void checkCancelOperationSupported(int kind, String kindName) throws Exception {
FBManager fbManager = createFBManager();
defaultDatabaseSetUp(fbManager);
try (WireDatabaseConnection gdsConnection = createConnection()) {
gdsConnection.socketConnect();
try (FbWireDatabase db = gdsConnection.identify()) {
assertEquals("Unexpected FbWireDatabase implementation", getExpectedDatabaseType(), db.getClass());
db.attach();
assertTrue("expected database attached", db.isAttached());
db.cancelOperation(kind);
assertTrue("Expected database still attached after " + kindName, db.isAttached());
assertTrue("Expected connection still open after " + kindName, gdsConnection.isConnected());
}
} finally {
defaultDatabaseTearDown(fbManager);
}
}
use of org.firebirdsql.gds.ng.wire.FbWireDatabase in project jaybird by FirebirdSQL.
the class BaseTestV10Blob method createFbDatabase.
@Override
protected final FbDatabase createFbDatabase(FbConnectionProperties connectionInfo) throws SQLException {
WireDatabaseConnection gdsConnection = new WireDatabaseConnection(connectionInfo, EncodingFactory.getPlatformDefault(), getProtocolCollection());
gdsConnection.socketConnect();
FbWireDatabase db = gdsConnection.identify();
db.attach();
return db;
}
use of org.firebirdsql.gds.ng.wire.FbWireDatabase in project jaybird by FirebirdSQL.
the class TestV10Database method testBasicAttach.
/**
* Tests if attaching to an existing database works.
*/
@Test
public void testBasicAttach() throws Exception {
FBManager fbManager = createFBManager();
defaultDatabaseSetUp(fbManager);
try (WireDatabaseConnection gdsConnection = createConnection()) {
gdsConnection.socketConnect();
try (FbWireDatabase db = gdsConnection.identify()) {
assertEquals("Unexpected FbWireDatabase implementation", getExpectedDatabaseType(), db.getClass());
db.attach();
System.out.println(db.getHandle());
assertTrue("Expected isAttached() to return true", db.isAttached());
assertNotNull("Expected version string to be not null", db.getServerVersion());
assertNotEquals("Expected version should not be invalid", GDSServerVersion.INVALID_VERSION, db.getServerVersion());
}
} finally {
defaultDatabaseTearDown(fbManager);
}
}
use of org.firebirdsql.gds.ng.wire.FbWireDatabase in project jaybird by FirebirdSQL.
the class TestV10Database method testBasicDetach.
@Test
public void testBasicDetach() throws Exception {
FBManager fbManager = createFBManager();
defaultDatabaseSetUp(fbManager);
try (WireDatabaseConnection gdsConnection = createConnection()) {
gdsConnection.socketConnect();
FbWireDatabase db = gdsConnection.identify();
try {
assertEquals("Unexpected FbWireDatabase implementation", getExpectedDatabaseType(), db.getClass());
db.attach();
db.close();
assertFalse("Expected database not attached", db.isAttached());
assertFalse("Expected connection closed", gdsConnection.isConnected());
} finally {
safelyClose(db);
}
} finally {
defaultDatabaseTearDown(fbManager);
}
}
use of org.firebirdsql.gds.ng.wire.FbWireDatabase in project jaybird by FirebirdSQL.
the class TestV10Database method testDetach_openTransactions.
@Test
public void testDetach_openTransactions() throws Exception {
FBManager fbManager = createFBManager();
defaultDatabaseSetUp(fbManager);
try (WireDatabaseConnection gdsConnection = createConnection()) {
gdsConnection.socketConnect();
try (FbWireDatabase db = gdsConnection.identify()) {
FbTransaction transaction = null;
try {
SimpleDatabaseListener callback = new SimpleDatabaseListener();
db.addDatabaseListener(callback);
assertEquals("Unexpected FbWireDatabase implementation", getExpectedDatabaseType(), db.getClass());
db.attach();
// Starting an active transaction
transaction = getTransaction(db);
expectedException.expect(allOf(errorCodeEquals(ISCConstants.isc_open_trans), message(startsWith(getFbMessage(ISCConstants.isc_open_trans, "1")))));
// Triggers exception
db.close();
} finally {
if (transaction != null && transaction.getState() == TransactionState.ACTIVE) {
transaction.commit();
}
}
}
} finally {
defaultDatabaseTearDown(fbManager);
}
}
Aggregations