Class Database.SQLEvent

java.lang.Object
org.reldb.wrapd.sqldb.Database.SQLEvent
Enclosing class:
Database

public static class Database.SQLEvent
extends java.lang.Object
An instance of an SQL query, for monitoring queries processed by a Database.
  • Field Summary

    Fields
    Modifier and Type Field Description
    java.lang.String location
    Where the query was issued.
    java.lang.String sqlText
    The SQL text of the query.
  • Constructor Summary

    Constructors
    Constructor Description
    SQLEvent​(java.lang.String location, java.lang.String sqlText)
    Constructor.
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • sqlText

      public final java.lang.String sqlText
      The SQL text of the query.
    • location

      public final java.lang.String location
      Where the query was issued.
  • Constructor Details

    • SQLEvent

      public SQLEvent​(java.lang.String location, java.lang.String sqlText)
      Constructor.
      Parameters:
      location - Where the query was issued.
      sqlText - The SQL text of the query.