| 111 | |
| 112 | |
| 113 | void TimeZonePackage::databaseVersionFunction(Firebird::ThrowStatusExceptionWrapper* status, |
| 114 | Firebird::IExternalContext* context, const void*, DatabaseVersionOutput::Type* out) |
| 115 | { |
| 116 | string str; |
| 117 | TimeZoneUtil::getDatabaseVersion(str); |
| 118 | |
| 119 | out->versionNull = FB_FALSE; |
| 120 | out->version.set(str.c_str()); |
| 121 | } |
| 122 | |
| 123 | |
| 124 | //-------------------------------------- |