Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

Can I use ADOCE to access tables created directly with the Windows CE database APIs?

0
Posted

Can I use ADOCE to access tables created directly with the Windows CE database APIs?

0

Yes, sort of. ADO provides more functionality than the underlying Windows CE database functions. The only way it can do this is by storing extra information about each table. If you create a table using CeCreateDatabase (sic) then ADO will not be able to “see” that table. Alternatively, if you create a table using ADO’s “CREATE TABLE” syntax then both ADO and the CeOpenDatabase (etc) functions will be able to use the data. Note, though, that accessing a table using both ADO and the Ce database functions is “not supported”. However this is mostly because CeWriteRecordProps allows you to write different data types for a given field on different rows (it’s also because we’ve never tested this scenario). If your application behaves “normally” then in practice you probably won’t have any problems. Note that all CE database specific features are supported by ADO even though other MS database engines don’t have corresponding features (usually because they’re not necessary). E.g., you can spec

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123