|
Hi all,
I am having a hard time with WM5 edb. I saw some post to use "windbase_edb.h" header file, and the "Porting CEDB to EDB" use "#define EDB ..windbase.h".
It is very strange that using difference headers, the parameters of default structures are not the same (i use the debugger to observe the values)
"windbase_edb.h"
CEDBASEINFOEX DBInfo;
the sortspec of DBInfo defaults to [4] ------- this is the old CEDB default
"#define EDB
"windbase.h"
CEDBASEINFOEX DBInfo;
the sortspec of DBInfo defaults to [16] ------- this is the EDB default
In additon, i cannot assign a sort flag to the DBInfo, there are always a Invalid_parameter_error when using "CeCreateDatabaseWithProps" function.
Is it some kind of bug in windbase_edb.h ?
|