Exemple #1
0
 def visit_NCLOB(self, type_, **kwargs):
     raise exceptions.NotSupportedError("Type NCBLOB is not supported")
Exemple #2
0
 def visit_VARBINARY(self, type_, **kwargs):
     raise exceptions.NotSupportedError("Type VARBINARY is not supported")
Exemple #3
0
 def visit_TIME(self, type_, **kwargs):
     raise exceptions.NotSupportedError("Type TIME is not supported")
Exemple #4
0
 def executemany(self, operation, seq_of_parameters=None):
     raise exceptions.NotSupportedError(
         "`executemany` is not supported, use `execute` instead"
     )
Exemple #5
0
 def visit_CLOB(self, type_, **kwargs: Any) -> str:
     raise exceptions.NotSupportedError("Type CBLOB is not supported")
Exemple #6
0
 def visit_BINARY(self, type_, **kwargs: Any) -> str:
     raise exceptions.NotSupportedError("Type BINARY is not supported")