Hello, you can easily export Excel file (XLS or XLSX) to database in environment with this component. Here is a sample code how to export and then use SqlDataAdapter to update the database: var excelFile = new ExcelFile(); excelFile.LoadXls( ' MyFile.xls'); var worksheet = excelFile.Worksheets[ 0]; // Extract all used cells to DataTable, automatically determine column types based on cell content, skip empty rows and use first row as column headers. Var dataTable = worksheet.CreateDataTable(worksheet.GetUsedCellRange( true), ColumnTypeResolution.Auto, ExtractDataOptions.SkipEmptyRows, true); // Update the SQL database.
Untuk dapat menghubungkan sebuah program dengan database, selain connection string yang ada pada baris suatu coding, juga dibutuhkan driver agar sebuah program dapat berkomunikasi dengan database, apalagi jika antara program dan database sudah berbeda platform pembuatnya. Sebagai contohnya jika kita ingin mengembangkan sebuah software yang di develop dengan menggunakan Visual Studio yang notabene platform tersebut milik Microsoft, dengan sebuah database open source seperti MySQL, hal ini tentunya membutuhkan 3rd party software yang sudah di sediakan oleh MySQL.