method DatabaseSync.prototype.prepare
Usage in Deno
```typescript import { DatabaseSync } from "node:node__sqlite.d.ts"; ```
DatabaseSync.prototype.prepare(sql: string): StatementSync
Compiles a SQL statement into a [prepared statement](https://www.sqlite.org/c3ref/stmt.html). This method is a wrapper
around [`sqlite3_prepare_v2()`](https://www.sqlite.org/c3ref/prepare.html).
The prepared statement.