mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
115408986c
- re-style according to the style giudelines for better readability - updated to recent frontend/backend API changes - fixed a few quirks about normalization - "optimized" a few memory allocation/string handling functions - fixed a few quirks about add/modify (still have to look ad modrdn) todo: - there is still something broken (at least with PostgreSQL and IBM db2, the two RDBMS O have at hand) when adding - move everything to struct bervals and try to save a few strlen - try some LDAP/SQL syntax relation to use appropriate value bind if possible - ...
29 lines
818 B
C
29 lines
818 B
C
#ifndef __BACKSQL_ENTRYID_H__
|
|
#define __BACKSQL_ENTRYID_H__
|
|
|
|
/*
|
|
* Copyright 1999, Dmitry Kovalev <mit@openldap.org>, All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms are permitted only
|
|
* as authorized by the OpenLDAP Public License. A copy of this
|
|
* license is available at http://www.OpenLDAP.org/license.html or
|
|
* in file LICENSE in the top-level directory of the distribution.
|
|
*/
|
|
|
|
|
|
typedef struct backsql_entryID {
|
|
unsigned long id;
|
|
unsigned long keyval;
|
|
unsigned long oc_id;
|
|
struct berval dn;
|
|
struct backsql_entryID *next;
|
|
} backsql_entryID;
|
|
|
|
int backsql_dn2id( backsql_info *bi, backsql_entryID *id,
|
|
SQLHDBC dbh, struct berval *dn );
|
|
/* returns next */
|
|
backsql_entryID *backsql_free_entryID( backsql_entryID *id, int freeit );
|
|
|
|
#endif /* __BACKSQL_ENTRYID_H__ */
|
|
|