Try using ADODB.
Option Explicit
Sub Export1line()
    Const DB = "FilePath"
    Const TABLE = "TargetTableName"
    Dim cn As Object, rs As Object
    Dim i As Long, r As Long, n As Long
    Dim col, val(5)
    col = Array("Column1", "Column2", "Column3", _
                "Column4", "Column5", "Column6")
    
    Set cn = CreateObject("ADODB.Connection")
    With cn
        .ConnectionString = "Provider=Microsoft.ace.OLEDB.12.0;Data Source=" & DB
        .Open
    End With
    Set rs = CreateObject("ADODB.Recordset")
    rs.Open TABLE, cn, 2, 2, 2 'adOpenDynamic, adLockPessimistic, adCmdTable
    With Worksheets("To Export")
        For r = 2 To 2 ' 1 row
            For i = 0 To 5
                val(i) = .Cells(r, i + 1).Value
            Next
            ' add record
            rs.AddNew col, val
            n = n + 1
        Next
    End With
    rs.Close
    cn.Close
    MsgBox n & " records added to " & TABLE
  
End Su