I have the following code:
*** Test Cases ***
Testing Connect to SQL Server
${queryTest} Execute Sql String SELECT * FROM users where Id='1'
#log to console ${queryTest} //This print NONE
#${query_results} SeleniumLibrary.Get Text ${queryTest}
#log to console ${query_results}
#${value}= Set Variable ${queryTest[0][0]}
log to console ${value}
log to console should display result
${rowCount}= Row Count SELECT * FROM users where Id='1'
log to console ${rowCount}
#rowCount print 1
What I'm trying to do is printing the query's result in the console
Connect To Databasekeyword in the script, it might be elsewhere, but it might be wrong, unsuccessful etc.