Skip to content
This repository was archived by the owner on Apr 16, 2025. It is now read-only.

usausa/MySqlBulkLoader

Repository files navigation

MySqlBulkLoader - MySqlBulkCopy helper

NuGet

The following libraries are recommended over this one:

Usage

using System;
using System.Collections.Generic;
using System.Threading.Tasks;

using MySqlBulkLoader;

public static class Program
{
    public static async Task Main()
    {
        var loader = new MySqlBulkLoader(new MySqlBulkLoaderConfig
        {
            ConnectionString = "..."
        });

        await loader.LoadAsync("TargetTable", Query());
    }

    private static IEnumerable<Data> Query()
    {
        ...
    }
}

About

MySQL bulk load library.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages