I'm trying to query a database to get data, convert it to json file and send it to another service. Because those queries can have any column in any table it is impossible to define all structures and data types. I was trying to use sqlx lib but whatever I do MssqlRow won't compile because it cannot infer the type.
Each row should be separate json, so no list of jsons.
Jsons show be created in service, not on db level.