mysql-lited ~master (2019-08-01T12:32:46Z)
Dub
Repo
MySQLClientT
mysql
client
Undocumented in source.
final
class
MySQLClientT (
SocketType
ConnectionOptions
Options
=
ConnectionOptions
.
Default
) {
this
(string connectionString);
this
(ConnectionSettings settings);
this
(string host, ushort port, string user, string pwd, string db);
auto
lockConnection
();
const
(
ConnectionPoolType
)
pool
[@property getter];
alias
LockedConnection
=
vibe
.
core
.
connectionpool
.
LockedConnection
!(
ConnectionType
*)
;
alias
ConnectionType
=
Connection
!(
VibeSocket
,
Options
)
;
alias
ConnectionPoolType
=
ConnectionPool
!(
ConnectionType
*)
;
}
Constructors
this
this
(string connectionString)
Undocumented in source.
this
this
(ConnectionSettings settings)
Undocumented in source.
this
this
(string host, ushort port, string user, string pwd, string db)
Undocumented in source.
Members
Aliases
ConnectionPoolType
alias
ConnectionPoolType
=
ConnectionPool
!(
ConnectionType
*)
Undocumented in source.
ConnectionType
alias
ConnectionType
=
Connection
!(
VibeSocket
,
Options
)
Undocumented in source.
LockedConnection
alias
LockedConnection
=
vibe
.
core
.
connectionpool
.
LockedConnection
!(
ConnectionType
*)
Undocumented in source.
Functions
lockConnection
auto
lockConnection
()
Undocumented in source. Be warned that the author may not have intended to support it.
Properties
pool
const
(
ConnectionPoolType
)
pool
[@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
Meta
Source
See Implementation
mysql
client
aliases
MySQLClient
classes
MySQLClientT