Ask a question to get started
Enter to sendā¢Shift+Enter new line
Execute a SQL command and return a string representing the results.
If the statement returns rows, a string of the results is returned. If the statement returns no rows, an empty string is returned.
run( self, command: Union[str, Executable], fetch: Literal['all', 'one', 'cursor'] = 'all', include_columns: bool = False, *, parameters: Optional[Dict[str, Any]] = None, execution_options: Optional[Dict[str, Any]] = None ) -> Union[str, Sequence[Dict[str, Any]], Result[Any]]