SDK Home Glossary Index Left Right Up

IAS database entry


Section contents


Overview

Defined in

csocket.oxh

See Also

NetDatabase


Construction / destruction


NewIASDatabaseEntry

Usage

this& = NewIASDatabaseEntry&:

Description

<TBS>

Return Value
this& A handle which represents the created IAS database entry object
Error Handling

If the object could not be created then an error is generated which should be trapped by an ONERR handler.

Example
  LOCAL this&

  this& = NewIASDatabaseEntry&:
  DeleteIASDatabaseEntry:(this&) 

DeleteIASDatabaseEntry

Usage

DeleteIASDatabaseEntry:(BYREF this&)

Description

<TBS>

Arguments
BYREF this& A handle for an IAS database entry object. A zero value is written back into the variable
Example
  LOCAL this$

  this& = NewIASDatabaseEntry&:
  DeleteIASDatabaseEntry:(this&) 

Methods provided


IASDatabaseEntrySetAttributeName

Usage

IASDatabaseEntrySetAttributeName:(this&,name$)

Description

<TBS>

Arguments
this& A handle for an IAS database entry object
name$ The attribute name. The maximum length is KIASAttributeName&.

IASDatabaseEntrySetClassName

Usage

IASDatabaseEntrySetClassName:(this&,name$)

Description

<TBS>

Arguments
this& A handle for an IAS database entry object
name$ The class name. The maximum length is KIASClassName&.

IASDatabaseEntrySetToCharString

Usage

IASDatabaseEntrySetToCharString:(this&,string$)

Description

<TBS>

Arguments
this& A handle for an IAS database entry object
string$ A string.

IASDatabaseEntrySetToInteger

Usage

IASDatabaseEntrySetToInteger:(this&,value&)

Description

<TBS>

Arguments
this& A handle for an IAS database entry object
value& An integer value.

IASDatabaseEntrySetToOctetSeq

Usage

IASDatabaseEntrySetToOctetSeq:(this&,des&)

Description

<TBS>

Arguments
this& A handle for an IAS database entry object
des& A handle to a descriptor object.

  SDK Home Glossary Index Left Right Up