turbaszek commented on a change in pull request #13847:
URL: https://github.com/apache/airflow/pull/13847#discussion_r563263804
##########
File path: airflow/providers/exasol/hooks/exasol.py
##########
@@ -108,6 +108,37 @@ def get_first(self, sql: Union[str, list], parameters:
Optional[dict] = None) ->
with closing(conn.execute(sql, parameters)) as cur:
return cur.fetchone()
+ def export_to_file(
Review comment:
@XD-DENG is right - I hoped that using the `Pyexasol` method will give
us most flexibility and will be easiest to maintain. Here is the exasol info:
>The target file can either be CSV or FBV files and should comply to the
format specifications in the CSV Data Format and the Fixblock Data format
(FBV). File names may only consist of ASCII characters. A BOMClosed is not
supported.
https://docs.exasol.com/sql/export.htm#UsageNotes
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]