skip to main content
Troubleshooting : Troubleshooting your application : DataDirect Spy Log Example
  

Try DataDirect Drivers Now

DataDirect Spy Log Example

This section provides information to help you understand the content of your own DataDirect Spy logs.
For example, suppose your application executes the following code and performs some operations:
Class.forName("com.ddtek.jdbc.cassandra.CassandraDriver");
DriverManager.getConnection("jdbc:datadirect:cassandra:
//MyServer:9042;keyspaceName=MyKS;fetchSize=50;
spyAttributes=(log=(file)c:\\temp\\spy.log)","test04", "test04");
The log file generated by DataDirect Spy would look similar to the following example. Notes provide explanations for the referenced text.
spy>> Connection[1].getMetaData()
spy>> OK (DatabaseMetaData[1])

spy>> DatabaseMetaData[1].getURL()
spy>> OK
(jdbc:datadirect:cassandra://MyServer:9042;CONNECTIONRETRYCOUNT=5;
ALTERNATESERVERS=;DATABASENAME=;INITIALIZATIONSTRING=;AUTHENTICATIONMETHOD=none;
SPYATTRIBUTES=(log=(file)c:\temp\spy.log);TRANSACTIONMODE=noTransactions;
JAVADOUBLETOSTRING=false;CONNECTIONRETRYDELAY=1;INSENSITIVERESULTSETBUFFERSIZE=2048;
MAXPOOLEDSTATEMENTS=0;LOADBALANCING=false;CONVERTNULL=1; CREATEMAP=notExist;
IMPORTSTATEMENTPOOL=;KEYSPACENAME=MyKS)1
spy>> DatabaseMetaData[1].getDriverName()
spy>> OK (Cassandra)

spy>> DatabaseMetaData[1].getDriverVersion()
spy>> OK (3.60.0 (000000.000000.000000))

spy>> DatabaseMetaData[1].getDatabaseProductName()
spy>> OK (Cassandra)

spy>> DatabaseMetaData[1].getDatabaseProductVersion()
spy>> OK (Cassandra - 2.1.0)

spy>> Connection Options :2
spy>> CONNECTIONRETRYCOUNT=5
spy>> ALTERNATESERVERS=
spy>> DATABASENAME=
spy>> INITIALIZATIONSTRING=
spy>> AUTHENTICATIONMETHOD=none
spy>> SPYATTRIBUTES=(log=(file)c:\temp\spy.log)
spy>> JAVADOUBLETOSTRING=false
spy>> CONNECTIONRETRYDELAY=1
spy>> INSENSITIVERESULTSETBUFFERSIZE=2048
spy>> MAXPOOLEDSTATEMENTS=0
spy>> LOADBALANCING=false
spy>> CONVERTNULL=1
spy>> CREATEMAP=notExist
spy>> IMPORTSTATEMENTPOOL=
spy>> KEYSPACENAME=MyKS
spy>> Driver Name = Cassandra3
spy>> Driver Version = 6.0.0 (000000.000000.000000)4
spy>> Database Name = Cassandra5
spy>> Database Version = Cassandra - 2.1.06
spy>> Connection[1].getWarnings()
spy>> OK7spy>> Connection[1].createStatement
spy>> OK (Statement[1])

spy>> Statement[1].executeQuery(String sql)
spy>> sql = select empno,ename,job from emp where empno=7369
spy>> OK (ResultSet[1])8
spy>> ResultSet[1].getMetaData()
spy>> OK (ResultSetMetaData[1])9
spy>> ResultSetMetaData[1].getColumnCount()
spy>> OK (3)10
spy>> ResultSetMetaData[1].getColumnLabel(int column)
spy>> column = 1
spy>> OK (EMPNO)11spy>> ResultSetMetaData[1].getColumnLabel(int column)
spy>> column = 2
spy>> OK (ENAME)12
spy>> ResultSetMetaData[1].getColumnLabel(int column)
spy>> column = 3
spy>> OK (JOB)13spy>> ResultSet[1].next()
spy>> OK (true)14
spy>> ResultSet[1].getString(int columnIndex)
spy>> columnIndex = 1
spy>> OK (7369)15
spy>> ResultSet[1].getString(int columnIndex)
spy>> columnIndex = 2
spy>> OK (SMITH)16
spy>> ResultSet[1].getString(int columnIndex)
spy>> columnIndex = 3
spy>> OK (CLERK)17
spy>> ResultSet[1].next()
spy>> OK (false)18spy>> ResultSet[1].close()
spy>> OK19
spy>> Connection[1].close()
spy>> OK20

1 The combination of the URL specified by the application and the default values of all connection properties not specified.

2 The combination of the connection properties specified by the application and the default values of all connection properties not specified.

3 The name of the driver.

4 The version of the driver.

5 The name of the database server to which the driver connects.

6 The version of the database to which the driver connects.

7 The application checks to see if there are any warnings. In this example, no warnings are present.

8 The statement select empno,ename,job from emp where empno=7369 is created.

9 Some metadata is requested.

10 Some metadata is requested.

11 Some metadata is requested.

12 Some metadata is requested.

13 Some metadata is requested.

14 The first row is retrieved and the application retrieves the result values.

15 The first row is retrieved and the application retrieves the result values.

16 The first row is retrieved and the application retrieves the result values.

17 The first row is retrieved and the application retrieves the result values.

18 The application attempts to retrieve the next row, but only one row was returned for this query.

19 After the application has completed retrieving result values, the result set is closed.

20 The application finishes and disconnects.