MariaDBStatement

Undocumented in source.

Members

Functions

close
void close()
Undocumented in source. Be warned that the author may not have intended to support it.
empty
bool empty()
Undocumented in source. Be warned that the author may not have intended to support it.
execute
void execute()
Undocumented in source. Be warned that the author may not have intended to support it.
front
DBALRow front()
Undocumented in source. Be warned that the author may not have intended to support it.
popFront
void popFront()
Undocumented in source. Be warned that the author may not have intended to support it.

Mixins

__anonymous
mixin bindImpl!bool
Undocumented in source.
__anonymous
mixin bindImpl!byte
Undocumented in source.
__anonymous
mixin bindImpl!ubyte
Undocumented in source.
__anonymous
mixin bindImpl!short
Undocumented in source.
__anonymous
mixin bindImpl!ushort
Undocumented in source.
__anonymous
mixin bindImpl!int
Undocumented in source.
__anonymous
mixin bindImpl!uint
Undocumented in source.
__anonymous
mixin bindImpl!long
Undocumented in source.
__anonymous
mixin bindImpl!ulong
Undocumented in source.
__anonymous
mixin bindImpl!double
Undocumented in source.
__anonymous
mixin bindImpl!string
Undocumented in source.
__anonymous
mixin bindImpl!DateTime
Undocumented in source.
__anonymous
mixin bindImpl!TimeOfDay
Undocumented in source.
__anonymous
mixin bindImpl!Date
Undocumented in source.
__anonymous
mixin bindImpl!(const(ubyte)[])
Undocumented in source.
__anonymous
mixin bindImpl!(typeof(null))
Undocumented in source.

Mixed In Members

From mixin bindImpl!bool

bind
void bind(int index, T value)
Undocumented in source. Be warned that the author may not have intended to support it.

From mixin bindImpl!byte

bind
void bind(int index, T value)
Undocumented in source. Be warned that the author may not have intended to support it.

From mixin bindImpl!ubyte

bind
void bind(int index, T value)
Undocumented in source. Be warned that the author may not have intended to support it.

From mixin bindImpl!short

bind
void bind(int index, T value)
Undocumented in source. Be warned that the author may not have intended to support it.

From mixin bindImpl!ushort

bind
void bind(int index, T value)
Undocumented in source. Be warned that the author may not have intended to support it.

From mixin bindImpl!int

bind
void bind(int index, T value)
Undocumented in source. Be warned that the author may not have intended to support it.

From mixin bindImpl!uint

bind
void bind(int index, T value)
Undocumented in source. Be warned that the author may not have intended to support it.

From mixin bindImpl!long

bind
void bind(int index, T value)
Undocumented in source. Be warned that the author may not have intended to support it.

From mixin bindImpl!ulong

bind
void bind(int index, T value)
Undocumented in source. Be warned that the author may not have intended to support it.

From mixin bindImpl!double

bind
void bind(int index, T value)
Undocumented in source. Be warned that the author may not have intended to support it.

From mixin bindImpl!string

bind
void bind(int index, T value)
Undocumented in source. Be warned that the author may not have intended to support it.

From mixin bindImpl!DateTime

bind
void bind(int index, T value)
Undocumented in source. Be warned that the author may not have intended to support it.

From mixin bindImpl!TimeOfDay

bind
void bind(int index, T value)
Undocumented in source. Be warned that the author may not have intended to support it.

From mixin bindImpl!Date

bind
void bind(int index, T value)
Undocumented in source. Be warned that the author may not have intended to support it.

From mixin bindImpl!(const(ubyte)[])

bind
void bind(int index, T value)
Undocumented in source. Be warned that the author may not have intended to support it.

From mixin bindImpl!(typeof(null))

bind
void bind(int index, T value)
Undocumented in source. Be warned that the author may not have intended to support it.

Inherited Members

From Statement

close
void close()
bind
void bind(int index, bool value)
void bind(int index, byte value)
void bind(int index, ubyte value)
void bind(int index, short value)
void bind(int index, ushort value)
void bind(int index, int value)
void bind(int index, uint value)
void bind(int index, long value)
void bind(int index, ulong value)
void bind(int index, double value)
void bind(int index, const(ubyte)[] value)
void bind(int index, string value)
void bind(int index, DateTime value)
void bind(int index, TimeOfDay value)
void bind(int index, Date value)
void bind(int index, typeof(null) )

Binds the passed value to the specified dynamic parameter

execute
void execute()

Executes the prepared statement using the currently bound values

empty
bool empty()

Determines whether there are any rows loaded (or left).

popFront
void popFront()

Advance to the next row

front
Row front()

Currently fetched (loaded) row

Meta