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
Hi there!
Thanks for this great library! I use it to write to MS SQL Server using Bulk Insert (here is the code). One thing I'm missing is the options for bulk copy: https://learn.microsoft.com/en-us/dotnet/api/system.data.sqlclient.sqlbulkcopyoptions?view=dotnet-plat-ext-7.0#fields . It seems to be pretty simple to implement, you can add this to the INSERT BULK statement, see C# implementation. Eg it would be something like INSERT BULK ({})({}) WITH (TABLOCK, KEEP_NULLS)
INSERT BULK
INSERT BULK ({})({}) WITH (TABLOCK, KEEP_NULLS)
I could also do a PR, tough my rust is not that great yet, just learned it last week :)
The text was updated successfully, but these errors were encountered:
fixes prisma#302
5e3ba54
No branches or pull requests
Hi there!
Thanks for this great library! I use it to write to MS SQL Server using Bulk Insert (here is the code). One thing I'm missing is the options for bulk copy: https://learn.microsoft.com/en-us/dotnet/api/system.data.sqlclient.sqlbulkcopyoptions?view=dotnet-plat-ext-7.0#fields . It seems to be pretty simple to implement, you can add this to the
INSERT BULK
statement, see C# implementation. Eg it would be something likeINSERT BULK ({})({}) WITH (TABLOCK, KEEP_NULLS)
I could also do a PR, tough my rust is not that great yet, just learned it last week :)
The text was updated successfully, but these errors were encountered: