mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
10566c8be3
* javascript * kernel * ldap * length * macros * maintained * manager * matching * maximum * mechanism * memory * method * mimic * minimum * modifiable * modifiers * modifying * multiple * necessary * normalized * objectclass * occurrence * occurring * offered * operation * original * overridden * parameter * permanent * preemptively * printable * protocol * provider * really * redistribution * referenced * refresh * regardless * registered * request * reserved * resource * response * sanity * separated * setconcurrency * should * specially * specifies * structure * structures * subordinates * substitution * succeed * successful * successfully * sudoers * sufficient * superiors * supported * synchronization * terminated * they're * through * traffic * transparent * unsigned * unsupported * version * absence * achieves * adamson * additional * address * against * appropriate * architecture * associated * async * attribute * authentication * authorized * auxiliary * available * begin * beginning * buffered * canonical * certificate * charray * check * class * compatibility * compilation * component * configurable * configuration * configure * conjunction * constraints * constructor * contained * containing * continued * control * convenience * correspond * credentials * cyrillic * database * definitions * deloldrdn * dereferencing * destroy * distinguish * documentation * emmanuel * enabled * entry * enumerated * everything * exhaustive * existence * existing * explicitly * extract * fallthru * fashion * february * finally * function * generically * groupname * happened * implementation * including * initialization * initializes * insensitive * instantiated * instantiation * integral * internal * iterate
16 lines
1.0 KiB
Plaintext
16 lines
1.0 KiB
Plaintext
1) driver name comparison for MS SQL Server workaround is really kinda dirty
|
|
hack, but for now i don't know how to code it more carefully
|
|
2) another dirty hack: length of LONGVARCHAR and LONGVARBINARY fields is
|
|
currently set to MAX_ATTR_LEN. Maybe such fields must be handled with
|
|
SQLGetData() instead of SQLBindCol(), but it is said in documentation,
|
|
that it is guaranteed to work only when such column goes after last bound
|
|
column. Or should we get ALL columns with SQLGetData (then something like
|
|
_SQLFetchAsStrings() wrapper would do SQLGetData() for all columns)...
|
|
3) in some cases (particularly, when using OpenLink Generic ODBC driver with
|
|
MS SQL Server), it returns "Function sequence error" after all records are
|
|
fetched. I really don't know what it means, and after all
|
|
- it works with any other driver I tried
|
|
4) ldapsearch sometimes refuses to show some attributes ("NOT PRINTABLE" diags)
|
|
on Win32 (on linux everything's fine)
|
|
5) back-sql crashes on invalid filters (to be fixed ASAP)
|
|
|