mysql.dart
mysql.dart copied to clipboard
Data passing
Hello. I would like to be able to retrieve the rows of a specific column and pass them to a list of String. How can I proceed?
var res = await conn.execute('SELECT * FROM COMMERCIALS');
for(final row in res.rows) {
row.assoc()["NOM_COMMERCIAL"];
}