public void InsertData()
        {
            var driver = new XlsDriver();

            using (var connection = driver.Connect(XlsUri))
            {
                connection.Open();
                driver.InsertData(connection, "Categories", new List <string> {
                    "Id", "Value"
                }, new List <string> {
                    "T", "Test"
                });

                connection.Close();
            }
        }