Hi all
i have a problem,
i want to extract a ODBC query ad insert the result in SqlLite table.
When can i do it?
I know use only excel
but I wan't user it! becouse ODBC -> Excel -> Sqlite is very slow
With $oExcel.ActiveSheet.ListObjects.Add(0, $DBString, True, 1, $oExcel.Range("$A$1")).QueryTable .CommandText = $Query .RowNumbers = False .FillAdjacentFormulas = False .PreserveFormatting = True .RefreshOnFileOpen = False .BackgroundQuery = True .RefreshStyle = 1 .SavePassword = False .SaveData = True .AdjustColumnWidth = True .RefreshPeriod = 0 .PreserveColumnInfo = True .ListObject.DisplayName = "Table" .Refresh.BackgroundQuery =False EndWith
Thanks all!!!