decodeTimeTz method
void
decodeTimeTz(
- IStatus status,
- Pointer<
IscTimeTz> timeTz, - Pointer<
UnsignedInt> hours, - Pointer<
UnsignedInt> minutes, - Pointer<
UnsignedInt> seconds, - Pointer<
UnsignedInt> fractions, - int timeZoneBufferLength,
- Pointer<
Utf8> timeZoneBuffer,
Implementation
void decodeTimeTz(
IStatus status,
Pointer<IscTimeTz> timeTz,
Pointer<UnsignedInt> hours,
Pointer<UnsignedInt> minutes,
Pointer<UnsignedInt> seconds,
Pointer<UnsignedInt> fractions,
int timeZoneBufferLength,
Pointer<Utf8> timeZoneBuffer,
) {
if (version < 4) {
throw UnimplementedError(
"Firebird client library version 4 or later required.",
);
}
_decodeTimeTz(
self,
status.self,
timeTz,
hours,
minutes,
seconds,
fractions,
timeZoneBufferLength,
timeZoneBuffer,
);
status.checkStatus();
}