Downloading data to mySQL

ubaig

New Member
Joined
Mar 18, 2014
Messages
17
i have downloading the data from the excelsheet to mysql database server it shows successully downloaded but creating duplicate columns in excel sheet and if check into mysql it is not stored in mysql database server please let me i have waiting for reply
Code:
Sub downloadData()
 
Dim dbconn As New ADODB.Connection
Dim i ', prdTblName
'prdTblName = "tblProd_" & projCode & "_" & batchCode
Dim qryStr, dataStr As String


qryStr = "SELECT * FROM tblbatch_headers where idBatch " & batchID & "order by col_seq asc"
Dim rs As New ADODB.Recordset
 dbconn.Open strConn
rs.Open qryStr, dbconn, 3, 1
i = 0
Do While rs.EOF = False


    i = i + 1
        If i = 1 Then
            dataStr = rs("tblColName")
        Else
            dataStr = dataStr & ", " & rs("tblColName")
        End If
    rs.MoveNext
Loop
' FP = For Prodction, IQR = In Process Quality Rejected, PC = Production Complete
' IQA = In Quality Check Approved, FQA = Final Quality Review Approved, FQR = Final Qaulity Review Rejected


qryStr = "SELECT " & dataStr & " FROM " & prdTblName & " where FQR_User_Code='" & Application.UserName & _
         "' and line_status in('QP') order by line_status"
Sheet1.Activate
Sheet1.Columns.Clear
    With ActiveSheet.ListObjects.Add(SourceType:=0, Source:="ODBC;DSN=mysql32;" _
        , Destination:=Range("$A$2")).QueryTable
        .CommandText = qryStr
        .RowNumbers = False
        .FillAdjacentFormulas = False
        .PreserveFormatting = True
        .RefreshOnFileOpen = False
        .BackgroundQuery = True
        .RefreshStyle = xlInsertDeleteCells
        .SavePassword = False
        .SaveData = True
        .AdjustColumnWidth = True
        .RefreshPeriod = 0
        .PreserveColumnInfo = True
      '    .SourceConnectionFile = _
         "C:\Users\Documents\My Data Sources\mydbconnection.odc"
        ' .ListObject.DisplayName = "Table_wds"
        '.Refresh BackgroundQuery:=False
    End With
    Range("C2").Select


rs.MoveFirst
i = 0
Do While rs.EOF = False
Dim rng As Range
    i = i + 1
            ActiveSheet.Cells(1, i) = rs("Comments")
            ActiveSheet.Cells(2, i) = rs("ActualColName")
            ActiveSheet.Cells(2, i).ID = rs("tblColName")
    rs.MoveNext
Loop
        ActiveSheet.Cells(2, i + 1).ID = prdTblName
rs.Close
dbconn.Close


MsgBox "Data downloaded sucessfully"
    Unload UserForm1


End Sub
 
Last edited by a moderator:

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
i use SQL at times and can do some tasks, just reading through I see a SELECT query but no UPDATE query, I guess your outcome is because this is how it appears to me to be written i.e pulling data into excel
 
Upvote 0

Forum statistics

Threads
1,216,753
Messages
6,132,514
Members
449,731
Latest member
dasda34

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top