| 1423 | } |
| 1424 | |
| 1425 | static cell_t SQL_CheckConfig(IPluginContext *pContext, const cell_t *params) |
| 1426 | { |
| 1427 | char *name; |
| 1428 | pContext->LocalToString(params[1], &name); |
| 1429 | |
| 1430 | return (g_DBMan.GetDatabaseConf(name) != nullptr) ? 1 : 0; |
| 1431 | } |
| 1432 | |
| 1433 | static cell_t SQL_ConnectCustom(IPluginContext *pContext, const cell_t *params) |
| 1434 | { |
nothing calls this directly
no test coverage detected