executeSql method

Future<int> executeSql(
  1. String sql
)

Executes SQL commands. Returns the number of rows affected.

Implementation

_i2.Future<int> executeSql(String sql) => caller.callServerEndpoint<int>(
  'insights',
  'executeSql',
  {'sql': sql},
);