SQLiteDriver holds the database connection string and a handle to the database connection.
| 31 | // SQLiteDriver holds the database connection string and a handle |
| 32 | // to the database connection. |
| 33 | type SQLiteDriver struct { |
| 34 | connStr string |
| 35 | dbConn *sql.DB |
| 36 | configForeignKeys []drivers.ForeignKey |
| 37 | } |
| 38 | |
| 39 | // Templates that should be added/overridden |
| 40 | func (s SQLiteDriver) Templates() (map[string]string, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected