* Calls the method with obtained connection and checks that returned value
* isn't null.
*/
public void _getDataDefinitionByConnection() {
boolean bRes = true;
XDriver xDriver = (XDriver)
UnoRuntime.queryInterface(XDriver.class, oObj);
if (xDriver == null) {
log.println("The XDriver interface isn't supported");
tRes.tested("getDataDefinitionByConnection()",
Status.skipped(false));
return;
}
try {
connection = xDriver.connect(url, info);
} catch(com.sun.star.sdbc.SQLException e) {
e.printStackTrace(log);
bRes = false;
}
if (connection == null) {