We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For backends that support it. Similar to, for MySQL:
LOAD DATA INFILE
INSERT INTO
INSERT INTO class_result VALUES (1,’John’,’A’),(2,’Elsa’,’D’),(3,’Sophia’,’B’),(4,’Paul’,’B’),(5,’Saira’,’A’)
The text was updated successfully, but these errors were encountered:
In the case of inserting a DataFrame to the SQLite database, it might be a good idea to use SQLite.jl package
cols = [] # cols for the model definition db = SQLite.DB("db/temp.sqlite") n = count(MyModel) df = df[!, cols] df |> SQLite.load!(db, "temp")
Sorry, something went wrong.
Yes - but the point is to have a common API for bulk inserts.
No branches or pull requests
For backends that support it.
Similar to, for MySQL:
LOAD DATA INFILE
INSERT INTO
):INSERT INTO class_result VALUES (1,’John’,’A’),(2,’Elsa’,’D’),(3,’Sophia’,’B’),(4,’Paul’,’B’),(5,’Saira’,’A’)
The text was updated successfully, but these errors were encountered: