GBase XDM C API 代码示例

#include
main()
{
LDAP *ld;
LDAPMessage *res, *e;
int i;
char *a, *dn;
void *ptr;
char **vals;
/* 打开一个连接 */
if ( (ld = ldap_init( "dotted.host.name", LDAP_PORT ))
== NULL ){
exit( 1 );
}
/* 设置分片集群标识,1 为访问分片集群 */
if (0 != ldap_set_sharding_flag(ld, 1 )) {
exit( 1 );
}
/* 在每一个添删改查操作前,首先设置目标分片信息,包括库类
型,被访问的 RDN 值 */
if (0 != ldap_set_sharding_value(ld, "CT",
"0001484E011001010000000000000002" )) {
exit( 1 );
}
/* 在 dc=CT 库内,搜索 sn 属性值是
"0001484E011001010000000000000002"的记录,返回所有属性 */
if ( ldap_search_s( ld, "dc=CT",
LDAP_SCOPE_SUBTREE,
"(sn=0001484E011001010000000000000002)", NULL, 0, &res )
!= LDAP_SUCCESS ) {
ldap_perror( ld, "ldap_search_s" );
exit( 1 );
}
/* 遍历返回的每个记录 */
for ( e = ldap_first_entry( ld, res ); e != NULL;
e = ldap_next_entry( ld, e ) ) {
/* 显示 DN */
dn = ldap_get_dn( ld, e );
printf( "dn: %s0, dn );
free( dn );
/* 显示每个属性 */
for ( a = ldap_first_attribute( ld, e, &ptr );
a != NULL;
a = ldap_next_attribute( ld, e, ptr ) ) {
printf( "attribute: %s0, a );
/* 显示每个值 */
vals = ldap_get_values( ld, e, a );
for ( i = 0; vals[i] != NULL; i++ ) {
printf( "value: %s0, vals[i] );
}
ldap_value_free( vals );
}
}
/* 释放搜索结果 */
ldap_msgfree( res );
/* 关闭连接并释放资源 */
ldap_unbind( ld );
}

你可能感兴趣的:(openldap,国产数据库,ldap,1024程序员节)