Le 18/07/2017 à 22:15, PICCORO McKAY Lenz a écrit :
SORRY i send and all the conversation was beetwen benoit and me without
noted it!!! seerending!

2017-07-18 16:05 GMT-04:00 Benoît Minisini <gam...@users.sourceforge.net>:

Of course, for proprietary databases, this is a problem. We must wait for
zxMarce to fix the driver. That's life...
>
... >

Moreover, I think you can workaround the problems of the ODBC driver by reimplementing the Result class in Gambas, overriding the accurate properties (Count) and methods (Move...), and fixing the default behaviour according to the Connection type.

Something like that:

' Result class

Export

Property Read Count As Integer

Private Sub Count_Read() As Integer

  If Me.Connection.Type = "odbc" Then
    ' workaround
    ...
  Else
    Return Super.Count
  Endif

End


--
Benoît Minisini

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to