Jump to content

mComDriver.Read_DB


PoLLo

Recommended Posts

Hi,

I managed how to get data from database using read_db function from activex.dll in vb6. I want to read whith copymemory function a float value from database but i get a large decimal number with cientific notation. Also i cannot read the entire database, so im doing it in groups of 19 cuz if i do 20 i get an error "9 Subscript out of range". Here is my code:

 

Private Sub LeerBD()
    Dim Valores() As Byte
    Dim i As Integer
    Dim iFecha As String
    Dim iHora As String
    Dim iTipo As String
    Dim iLote As Long
    Dim iTemCam As Double
    Dim iHumedad As Integer
    Dim iPresion As Integer
    Dim iPeso As Double
    Dim iEst As String
    Dim Pointer As Long
    Dim grupo As Long
    
    On Error GoTo mal
    
    For grupo = 0 To 101949 Step 19 * 51
    
        Call mComDriver.Read_DB(grupo, 19, 51, 51, Valores)
        Pointer = 0      
        For i = 1 To 19
            iFecha = PointerToString(VarPtr(Valores(Pointer)))
            Pointer = Pointer + 10
            iHora = PointerToString(VarPtr(Valores(Pointer)))
            Pointer = Pointer + 10
            iTipo = PointerToString(VarPtr(Valores(Pointer)))
            Pointer = Pointer + 10
            Call CopyMemory(iLote, Valores(Pointer), 4)
            Pointer = Pointer + 4
            Call CopyMemory(iTemCam, Valores(Pointer), 4)
            Pointer = Pointer + 4
            Call CopyMemory(iHumedad, Valores(Pointer), 2)
            Pointer = Pointer + 2
            Call CopyMemory(iPresion, Valores(Pointer), 2)
            Pointer = Pointer + 2
            Call CopyMemory(iPeso, Valores(Pointer), 4)
            Pointer = Pointer + 4
            iEst = PointerToString(VarPtr(Valores(Pointer)))
            Pointer = Pointer + 5
            Debug.Print iFecha & "-" & iHora & "-" & iTipo & "-" & iLote & "-" & iTemCam & "-" & iHumedad & "-" & iPresion & "-" & iPeso & "-" & iEst
        Next i
    Next grupo
    Exit Sub
mal:
    MsgBox "[" & Err.Number & "] " & Err.Description, vbCritical, "Error"
End Sub

the results for iTemCam or iPeso are like this:

8.39516345413446E-320

1.27321882187115E-314

Any ideas what im doing wrong?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...