You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
643 B
Python
22 lines
643 B
Python
"""
|
|
This module implements the handler for duckdb (in memory or not)
|
|
"""
|
|
from transport.sql.common import Base, BaseReader, BaseWriter
|
|
|
|
class Duck :
|
|
def __init__(self,**_args):
|
|
self.database = _args['database']
|
|
def get_provider(self):
|
|
return "duckdb"
|
|
|
|
def _get_uri(self,**_args):
|
|
return f"""duckdb:///{self.database}"""
|
|
class Reader(Duck,BaseReader) :
|
|
def __init__(self,**_args):
|
|
Duck.__init__(self,**_args)
|
|
BaseReader.__init__(self,**_args)
|
|
class Writer(Duck,BaseWriter):
|
|
def __init__(self,**_args):
|
|
Duck.__init__(self,**_args)
|
|
BaseWriter.__init__(self,**_args)
|