drop_table_purge#

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

Drop a table and purge it from the database.

Parameters:
  • client (Any) – 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