--- sidebar_position: 7 --- import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; # Delete table Deletes a table from the database `Function DeleteTable(Val Table, Val Connection = "") Export` | Parameter | CLI option | Type | Required | Description | |-|-|-|-|-| | Table | --table | String | ✔ | Table name | | Connection | --db | String, Arbitrary | ✖ | Existing connection or database path | Returns: Map Of KeyAndValue - Result of query execution
```bsl title="1C:Enterprise/OneScript code example" Base = "C:\Users\Administrator\AppData\Local\Temp\v8_5571_2fd.sqlite"; Table = "test"; Result = OPI_SQLite.DeleteTable(Table, Base); ``` ```bash oint sqlite DeleteTable \ --table "test" \ --db "C:\Users\Administrator\AppData\Local\Temp\cfyaxf0knp1.sqlite" ``` ```batch oint sqlite DeleteTable ^ --table "test" ^ --db "C:\Users\Administrator\AppData\Local\Temp\cfyaxf0knp1.sqlite" ``` ```json title="Result" { "result": true } ```