Results 1 to 40 of 269

Thread: VB SQLite Library (COM-Wrapper)

Threaded View

  1. #11
    Hyperactive Member
    Join Date
    May 2018
    Location
    Russia
    Posts
    343

    Question Re: VB SQLite Library (COM-Wrapper)

    Hi, Krool!

    What does the negative value of the SQLiteDataSet.Position property mean? It is -3 in my case.

    Edited:

    Got it.

    Code:
    Public Property Get Position() As Long
    If PropRecordCount(0) > 0 Then
        If PropPosition > PropRecordCount(0) Then
            Position = -3
        ElseIf PropPosition < 1 Then
            Position = -2
        Else
            Position = PropPosition
        End If
    Else
        Position = -1
    End If
    End Property
    Last edited by Nouyana; May 9th, 2024 at 02:18 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width