com.github.mauricio.async.db
Members list
Packages
Type members
Classlikes
Attributes
- Companion
- class
- Supertypes
-
trait Producttrait Mirrorclass Objecttrait Matchableclass Any
- Self type
-
Configuration.type
Contains the configuration necessary to connect to a database.
Contains the configuration necessary to connect to a database.
Value parameters
- allocator
-
the netty buffer allocator to be used
- charset
-
charset for the connection, defaults to UTF-8, make sure you know what you are doing if you change this
- connectTimeout
-
the timeout for connecting to servers
- database
-
database name, defaults to no database
- host
-
database host, defaults to "localhost"
- maximumMessageSize
-
the maximum size a message from the server could possibly have, this limits possible OOM or eternal loop attacks the client could have, defaults to 16 MB. You can set this to any value you would like but again, make sure you know what you are doing if you do change it.
- password
-
password, defaults to no password
- port
-
database port, defaults to 5432
- queryTimeout
-
the optional query timeout
- ssl
-
ssl configuration
- testTimeout
-
the timeout for connection tests performed by pools
- username
-
database username
Attributes
- Companion
- object
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
Base interface for all objects that behave like a connection. This trait will usually be implemented by the objects that connect to a database, either over the filesystem or sockets. [[Connection]]
are not supposed to be thread-safe and clients should assume implementations are not thread safe and shouldn't try to perform more than one statement (either common or prepared) at the same time. They should wait for the previous statement to be executed to then be able to pick the next one.
Base interface for all objects that behave like a connection. This trait will usually be implemented by the objects that connect to a database, either over the filesystem or sockets. [[Connection]]
are not supposed to be thread-safe and clients should assume implementations are not thread safe and shouldn't try to perform more than one statement (either common or prepared) at the same time. They should wait for the previous statement to be executed to then be able to pick the next one.
You can, for instance, compose on top of the futures returned by this class to execute many statements at the same time:
val handler: Connection = ...
val result: Future[QueryResult] = handler.connect
.map(parameters => handler)
.flatMap(connection => connection.sendQuery("BEGIN TRANSACTION ISOLATION LEVEL REPEATABLE READ"))
.flatMap(query => handler.sendQuery("SELECT 0"))
.flatMap(query => handler.sendQuery("COMMIT").map(value => query))
val queryResult: QueryResult = Await.result(result, Duration(5, SECONDS))
Attributes
- Supertypes
-
class Objecttrait Matchableclass Any
- Known subtypes
-
class ConnectionPool[T]class PartitionedConnectionPool[T]
Attributes
- Supertypes
-
trait Serializableclass Objecttrait Matchableclass Any
This is the result of the execution of a statement, contains basic information as the number or rows affected by the statement and the rows returned if there were any.
This is the result of the execution of a statement, contains basic information as the number or rows affected by the statement and the rows returned if there were any.
Attributes
- Supertypes
-
class Objecttrait Matchableclass Any
Represents the collection of rows that is returned from a statement inside a [[QueryResult]]
. It's basically a collection of Array[Any]. Mutating fields in this array will not affect the database in any way
Represents the collection of rows that is returned from a statement inside a [[QueryResult]]
. It's basically a collection of Array[Any]. Mutating fields in this array will not affect the database in any way
Attributes
Represents a row from a database, allows clients to access rows by column number or column name.
Represents a row from a database, allows clients to access rows by column number or column name.
Attributes
- Supertypes
-
trait IndexedSeq[Any]trait IndexedSeqOps[Any, IndexedSeq, IndexedSeq[Any]]trait IndexedSeq[Any]trait IndexedSeqOps[Any, IndexedSeq, IndexedSeq[Any]]trait Seq[Any]trait SeqOps[Any, IndexedSeq, IndexedSeq[Any]]trait Seq[Any]trait Equalstrait SeqOps[Any, IndexedSeq, IndexedSeq[Any]]trait PartialFunction[Int, Any]trait Int => Anytrait Iterable[Any]trait Iterable[Any]trait IterableFactoryDefaults[Any, IndexedSeq]trait IterableOps[Any, IndexedSeq, IndexedSeq[Any]]trait IterableOnceOps[Any, IndexedSeq, IndexedSeq[Any]]trait IterableOnce[Any]class Objecttrait Matchableclass AnyShow all
- Known subtypes
-
class ArrayRowData
Contains the SSL configuration necessary to connect to a database.
Contains the SSL configuration necessary to connect to a database.
Value parameters
- mode
-
whether and with what priority a SSL connection will be negotiated, default disabled
- rootCert
-
path to PEM encoded trusted root certificates, None to use internal JDK cacerts, defaults to None
Attributes
- Companion
- object
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
Attributes
- Companion
- class
- Supertypes
-
trait Producttrait Mirrorclass Objecttrait Matchableclass Any
- Self type
-
SSLConfiguration.type