File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -230,7 +230,7 @@ rollback(db) = execute!(db, "ROLLBACK TRANSACTION;")
230
230
" rollback transaction or named savepoint"
231
231
rollback (db, name) = execute! (db, " ROLLBACK TRANSACTION TO SAVEPOINT $(name) ;" )
232
232
233
- " drop the SQLite table `table` from the database `db`; `ifexists=true` will not return an error if `table` doesn't exist"
233
+ " drop the SQLite table `table` from the database `db`; `ifexists=true` will prevent an error being thrown if `table` doesn't exist"
234
234
function drop! (db:: DB ,table:: AbstractString ;ifexists:: Bool = false )
235
235
exists = ifexists ? " if exists" : " "
236
236
transaction (db) do
Original file line number Diff line number Diff line change 1
1
sqlitetype {T<:Integer} (:: Type{T} ) = " INT"
2
2
sqlitetype {T<:AbstractFloat} (:: Type{T} ) = " REAL"
3
3
sqlitetype {T<:AbstractString} (:: Type{T} ) = " TEXT"
4
+ sqlitetype (:: Type{NullType} ) = " NULL"
4
5
sqlitetype (x) = " BLOB"
5
6
" SQLite.Sink implements the `Sink` interface in the `DataStreams` framework"
6
7
type Sink <: Data.Sink # <: IO
You can’t perform that action at this time.
0 commit comments