mirror of
https://github.com/silverstripe/silverstripe-mssql
synced 2024-10-22 06:05:53 +00:00
debug data enabled
This commit is contained in:
parent
881a602894
commit
36c4145ffe
@ -1159,8 +1159,12 @@ class MSSQLQuery extends Query {
|
|||||||
$output[$columnName] = $value;
|
$output[$columnName] = $value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
echo 'output from nextRecord (MSSQL):<pre>';
|
||||||
|
print_r($output);
|
||||||
|
echo '</pre>';
|
||||||
return $output;
|
return $output;
|
||||||
} else {
|
} else {
|
||||||
|
echo 'nothing to return from nextRecord<br>';
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1177,8 +1181,12 @@ class MSSQLQuery extends Query {
|
|||||||
$output[$columnName] = $value;
|
$output[$columnName] = $value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
echo 'output from nextRecord (SQLSRV):<pre>';
|
||||||
|
print_r($output);
|
||||||
|
echo '</pre>';
|
||||||
return $output;
|
return $output;
|
||||||
} else {
|
} else {
|
||||||
|
echo 'nothing to return from nextRecord<br>';
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user