I am trying to get sql query output in DBfit using i.e. !|Execute|select * from abc|
but don't know how it will display in DBfit.
How to get output of sql queries in FitNesse + DbFit?
6.1k Views Asked by Ash At
2
There are 2 best solutions below
1

I think that you are looking for the Inspect Query
table (you can find reference docs about it here).
!|Inspect Query|select * from abc|
When executed, this will print the resultset of the query.
First, the execute fixture is typically used for actions that do not return data, e.g.:
or
However, even some non-data actions have more specific commands. The above update can be done with, for example, with:
For returning data, use the query fixture
As shown, just put your field names in the row below the fixture, then your data rows below that.