Skip to content

Commit 805ef8a

Browse files
committed
Fix docs
1 parent 90d2bb0 commit 805ef8a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/load.jl

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ function createtable(conn::Connection, nm::AbstractString, sch::Tables.Schema; d
4343
end
4444

4545
"""
46-
ODBC.load(table, conn, name; append=true, quoteidentifiers=true, limit=typemax(Int64), createtableclause=nothing, columnsuffix=Dict(), debug=false)
47-
table |> ODBC.load(conn, name; append=true, quoteidentifiers=true, limit=typemax(Int64), createtableclause=nothing, columnsuffix=Dict(), debug=false)
46+
MySQL.load(table, conn, name; append=true, quoteidentifiers=true, limit=typemax(Int64), createtableclause=nothing, columnsuffix=Dict(), debug=false)
47+
table |> MySQL.load(conn, name; append=true, quoteidentifiers=true, limit=typemax(Int64), createtableclause=nothing, columnsuffix=Dict(), debug=false)
4848
4949
Attempts to take a Tables.jl source `table` and load into the database represented by `conn` with table name `name`.
5050
@@ -60,7 +60,7 @@ by doing something like `columnsuffix=Dict(:Name => "CHARACTER SET utf8mb4")`.
6060
Do note that databases vary wildly in requirements for `CREATE TABLE` and column definitions
6161
so it can be extremely difficult to load data generically. You may just need to tweak some of the provided
6262
keyword arguments, but you may also need to execute the `CREATE TABLE` and `INSERT` statements
63-
yourself. If you run into issues, you can [open an issue](https://github.com/JuliaDatabases/ODBC.jl/issues) and
63+
yourself. If you run into issues, you can [open an issue](https://github.com/JuliaDatabases/MySQL.jl/issues) and
6464
we can see if there's something we can do to make it easier to use this function.
6565
"""
6666
function load end

0 commit comments

Comments
 (0)