You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Base.depwarn("`SQLite.query(db, sql)` will return an `SQLite.Query` object in the future; to materialize a resultset, do `DataFrame(SQLite.query(db, sql))` instead", nothing)
87
+
Base.depwarn("`SQLite.query(db, sql)` will return an `SQLite.Query` object in the future; to materialize a resultset, do `DataFrame(SQLite.Query(db, sql))` instead", nothing)
88
88
sink = DataFrame
89
89
else
90
-
Base.depwarn("`SQLite.query(db, sql, $sink, args...)` is deprecated; use `SQLite.query(db, sql) |> $sink(args...)` instead", nothing)
90
+
Base.depwarn("`SQLite.query(db, sql, $sink, args...)` is deprecated; use `SQLite.Query(db, sql) |> $sink(args...)` instead", nothing)
91
91
end
92
92
if append
93
-
Base.depwarn("`append=true` is deprecated in favor of sink-specific append support; for a DataFrame, for example, one can do `append!(existing_df, SQLite.query(db, sql))`", nothing)
93
+
Base.depwarn("`append=true` is deprecated in favor of sink-specific append support; for a DataFrame, for example, one can do `append!(existing_df, SQLite.Query(db, sql))`", nothing)
functionquery(db::DB, sql::AbstractString, sink::T; values=[], append::Bool=false, transforms::Dict=Dict{Int,Function}(), kwargs...) where {T}
101
-
Base.depwarn("`SQLite.query(db, sql, ::$T)` is deprecated; use `SQLite.query(db, sql) |> $T` instead", nothing)
101
+
Base.depwarn("`SQLite.query(db, sql, ::$T)` is deprecated; use `SQLite.Query(db, sql) |> $T` instead", nothing)
102
102
if append
103
103
Base.depwarn("`append=true` is deprecated in favor of sink-specific append support; for a DataFrame, for example, one can do `append!(existing_df, SQLite.query(db, sql))`", nothing)
104
104
end
@@ -107,12 +107,12 @@ function query(db::DB, sql::AbstractString, sink::T; values=[], append::Bool=fal
0 commit comments