class PostgreSQLClient extends AsyncSQLClient
Represents an PostgreSQL client
- Alphabetic
- By Inheritance
- PostgreSQLClient
- AsyncSQLClient
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new PostgreSQLClient(_asJava: AnyRef)
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
asJava: AnyRef
- Definition Classes
- AsyncSQLClient
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
def
close(whenDone: Handler[AsyncResult[Unit]]): Unit
Close the client and release all resources.
Close the client and release all resources. Call the handler when close is complete.
- whenDone
handler that will be called when close is complete
- Definition Classes
- AsyncSQLClient
-
def
close(): Unit
Close the client and release all resources.
Close the client and release all resources. Note that closing is asynchronous.
- Definition Classes
- AsyncSQLClient
-
def
closeFuture(): Future[Unit]
Like close but returns a scala.concurrent.Future instead of taking an AsyncResultHandler.
Like close but returns a scala.concurrent.Future instead of taking an AsyncResultHandler.
- Definition Classes
- AsyncSQLClient
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
getConnection(handler: Handler[AsyncResult[SQLConnection]]): Unit
Returns a connection that can be used to perform SQL operations on.
Returns a connection that can be used to perform SQL operations on. It's important to remember to close the connection when you are done, so it is returned to the pool.
- handler
the handler which is called when the
JdbcConnection
object is ready for use.
- Definition Classes
- AsyncSQLClient
-
def
getConnectionFuture(): Future[SQLConnection]
Like getConnection but returns a scala.concurrent.Future instead of taking an AsyncResultHandler.
Like getConnection but returns a scala.concurrent.Future instead of taking an AsyncResultHandler.
- Definition Classes
- AsyncSQLClient
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )