drop_table_purge#

langchain_community.vectorstores.oraclevs.drop_table_purge(client: Connection, table_name: str) None[source]#

Drop a table and purge it from the database.

Parameters:
  • client (Connection) – The OracleDB connection object.

  • table_name (str) – The name of the table to drop.

Raises:

RuntimeError – If an error occurs while dropping the table.

Return type:

None