I have C1Studio Enterprise but my subscription is older and has run out.
Hi I am using VistaDB as my embedded database. VistaDB is a pure ADO.NET provider and has no oledb interface. VistaDB is 100% compliant with ADO.NET; Misrosoft certified their compliance. VistaDB will export schema to XSD
What I need to do is to virtualize my data calls for several grids and drop-downs that are being loaded with thousands, up to millions of rows. I spent a while trying to get VistaaDB to build something akin to SQLCE's SQLCEResultSet object, and then in a desperate search found out that I may already have what I need.
As I understand it, I can define a virtual dataset equivalent that is bound to the datasource of a C1TrueDBGrid (and not a Datagridview because of some lack of functionality) and you will handle fetching of rows from the data set in real time.
My questions are:
Thanks; I would like to use this because I don't want to have to spend $2K on a second tool when I already have this one.
Neither example is informative. Customdataprovider appeared to have no code whatsoever to link to an ado.net provider.
Programmatic sample was a little better, but it seems that your system cannot work on pure ado.net.
> What I need to do is to virtualize my data calls for several grids and drop-downs > that are being loaded with thousands, up to millions of rows.
If you have a million of rows in a grid or drop-down it makes sense to apply some kind of filter to this huge record set and restrict the number of rows. Just imagine: the user opens a drop-down and have to choose one row from thousands of other rows.
Regards,
-Andrey
My customers want to see all of their rows. These are people who show dogs and are cyberphobic. If a row is missing from a grid, they wonder if the database is losing rows.
I need also to search on the sortable column incrementally. I.e., as you type characters into the search field the grid repositions to the first row that begins with the typed in characters.
Tha same is true from the drop-downs for selecting ancestors, that have gender and breed to filter upon.