runSQL method

Future<String?> runSQL(
  1. String sqlInline
)

Runs a SQL. Note that sqlInline should be a inline String, without line-breaks (\n).

Calls mysqlCMD.

Implementation

Future<String?> runSQL(String sqlInline) => _mysqlSQL(sqlInline);