How can i get a PDF from a SQL table and view it in the Adobe control?

I found this code but i dont know how to pass the data from SQL into the control.

Code:
        Me.AxPdf1.Visible = True
        Me.AxPdf1.setCurrentPage(1)
        Me.AxPdf1.LoadFile("C:\MyFile.pdf")
        Me.AxPdf1.gotoFirstPage()
        Me.AxPdf1.Enabled = True
        Me.AxPdf1.Select()
        Me.AxPdf1.Show()