Hello!
When using executeStatement from a IDBSQLSession, the type hinting returns an IOperation which is missing several of the helpful methods in DBSQLOperation (e.g. getId()). See:
|
public async executeStatement(statement: string, options: ExecuteStatementOptions = {}): Promise<IOperation> { |
.
Is there a way to properly return a DBSQLOperation from an IDBSQLSession so that I can safely use its methods?