| 112 | } |
| 113 | |
| 114 | void WriterImplementation::setDb(Firebird::CheckStatusWrapper* st, const char* value) |
| 115 | { |
| 116 | try |
| 117 | { |
| 118 | if (value) |
| 119 | { |
| 120 | PathName target; |
| 121 | expandDatabaseName(value, target, NULL); |
| 122 | current.insertString(AuthReader::AUTH_SECURE_DB, target); |
| 123 | } |
| 124 | } |
| 125 | catch (const Firebird::Exception& ex) |
| 126 | { |
| 127 | ex.stuffException(st); |
| 128 | } |
| 129 | } |
| 130 | |
| 131 | } // namespace Auth |
nothing calls this directly
no test coverage detected