package sql
- Alphabetic
- Public
- All
Type Members
- 
      
      
      
        
      
    
      
        
        class
      
      
        ResultSet extends AnyRef
      
      
      Represents the results of a SQL query. Represents the results of a SQL query. It contains a list for the column names of the results, and a list of JsonArray- one for each row of the results.
- 
      
      
      
        
      
    
      
        
        class
      
      
        SQLClient extends SQLOperations
      
      
      A common asynchronous client interface for interacting with SQL compliant database 
- 
      
      
      
        
      
    
      
        
        class
      
      
        SQLConnection extends SQLOperations
      
      
      Represents a connection to a SQL database 
- 
      
      
      
        
      
    
      
        
        trait
      
      
        SQLOperations extends AnyRef
      
      
      Represents a SQL query interface to a database 
- 
      
      
      
        
      
    
      
        
        class
      
      
        SQLOptions extends AnyRef
      
      
      Represents the options one can use to customize the unwrapped connection/statement/resultset types 
- 
      
      
      
        
      
    
      
        
        class
      
      
        SQLRowStream extends ReadStream[JsonArray]
      
      
      A ReadStream of Rows from the underlying RDBMS. A ReadStream of Rows from the underlying RDBMS. This class follows the ReadStream semantics and will automatically close the underlying resources if all returned rows are returned. For cases where the results are ignored before the full processing of the returned rows is complete the close method **MUST** be called in order to release underlying resources. The interface is minimal in order to support all SQL clients not just JDBC. 
- 
      
      
      
        
      
    
      
        
        class
      
      
        UpdateResult extends AnyRef
      
      
      Represents the result of an update/insert/delete operation on the database. Represents the result of an update/insert/delete operation on the database. The number of rows updated is available with UpdateResult and any generated keys are available with UpdateResult. 
Value Members
-  object ResultSet
-  object SQLClient
-  object SQLConnection
-  object SQLOperations
-  object SQLOptions
-  object SQLRowStream
-  object UpdateResult