SQLiteColumnGetter implements ColumnGetter for SQLite using the native ncruces/go-sqlite3 API.
| 69 | |
| 70 | // SQLiteColumnGetter implements ColumnGetter for SQLite using the native ncruces/go-sqlite3 API. |
| 71 | type SQLiteColumnGetter struct { |
| 72 | conn *sqlite3.Conn |
| 73 | } |
| 74 | |
| 75 | func (g *SQLiteColumnGetter) GetColumnNames(ctx context.Context, query string) ([]string, error) { |
| 76 | // Prepare the statement - this gives us column metadata without executing |
nothing calls this directly
no outgoing calls
no test coverage detected