Re: MSSQL database wizard issue
Posted: Thu Dec 22, 2016 3:49 pm
check_mssql doesn't work that way unfortunately. That would require altering the check_mssql plugin to add it's query results to the output message. It would likely involve changing the following block:
To append the returned row to $output_msg.
Code: Select all
if (mssql_num_rows($query_data) > 0 ) {
while ($row = mssql_fetch_row($query_data)) {
$column_name = mssql_field_name($query_data, 0);
$query_result = $row[0];
}
}