(value: str)
| 1844 | |
| 1845 | @staticmethod |
| 1846 | def _quote_sql_string(value: str) -> str: |
| 1847 | return "'" + value.replace("'", "''") + "'" |
| 1848 | |
| 1849 | def populate_schema_objects(self, schema: str | None, obj_type: str, columns: list[str] | None = None) -> list[str]: |
| 1850 | """Returns list of tables or functions for a (optional) schema""" |
no outgoing calls