Modifier and Type | Method and Description |
---|---|
JDynArray |
JDynArray.extractDA(int amc)
Extracts the specified attribute as a dynamic array
|
JDynArray |
JDynArray.extractDA(int amc,
int vmc)
Extracts the specified attribute or value as a dynamic array
|
JDynArray |
JDynArray.extractDA(int amc,
int vmc,
int svmc)
Extracts the specified attribute, value or sub-value as a dynamic array
|
JDynArray |
JCommon.getDA(int index)
Retrieves a dynamic array from a specific position in a common block
|
JDynArray |
JFile.getIndex(java.lang.String indexName)
Reads information about the specified index
|
JDynArray |
JConnection.getjBaseVersion()
Retrieves the version of jBASE database connected to this
JConnection object
|
JDynArray |
JFile.read(java.lang.String key)
Reads a record from the file without locking
|
JDynArray |
JFile.read(java.lang.String key,
boolean locked)
Reads a record from the file, optionally locking it
|
JDynArray |
JFile.read(java.lang.String key,
boolean locked,
boolean wait)
Reads a record from the file, optionally locking it and waiting for the lock
|
JDynArray |
JFile.readNamedField(java.lang.String key,
java.lang.String field)
Reads a named field from a file record
|
JDynArray |
JFile.readNamedField(java.lang.String key,
java.lang.String field,
boolean locked)
Reads a named field from a file record, optionally locking the record
|
JDynArray |
JFile.readNamedField(java.lang.String key,
java.lang.String field,
boolean locked,
boolean wait)
Reads a named field from a file record, optionally locking the record
|
JDynArray |
JFile.readV(java.lang.String key,
int attrib)
Reads an attribute from a file record without locking
|
JDynArray |
JFile.readV(java.lang.String key,
int attrib,
boolean locked)
Reads an attribute from a file record, optionally locking the record
|
JDynArray |
JFile.readV(java.lang.String key,
int attrib,
boolean locked,
boolean wait)
Reads an attribute from a file record, optionally locking the record
and waiting for the lock
|
Modifier and Type | Method and Description |
---|---|
void |
JDynArray.assign(JDynArray src)
Assigns the value of a dynamic array to this dynamic array
|
void |
JConnection.call(java.lang.String subName,
JDynArray[] parms)
Calls a host-side subroutine with given parameters
|
void |
JDynArray.insert(JDynArray data,
int amc)
Inserts data from the given dynamic array into the specified
attribute
|
void |
JDynArray.insert(JDynArray data,
int amc,
int vmc)
Inserts data from the given dynamic array into the specified
attribute or value
|
void |
JDynArray.insert(JDynArray data,
int amc,
int vmc,
int svmc)
Inserts data from the given dynamic array into the specified
attribute, value or sub-value
|
void |
JDynArray.insertDA(JDynArray data,
int amc)
Inserts data from the given dynamic array into the specified
attribute.
|
void |
JDynArray.insertDA(JDynArray data,
int amc,
int vmc)
Inserts data from the given dynamic array into the specified
attribute or value.
|
void |
JDynArray.insertDA(JDynArray data,
int amc,
int vmc,
int svmc)
Inserts data from the given dynamic array into the specified
attribute, value or sub-value.
|
void |
JDynArray.replace(JDynArray data,
int amc)
Replaces the given attribute
with the content of specified dynamic array
|
void |
JDynArray.replace(JDynArray data,
int amc,
int vmc)
Replaces the given attribute or value
with the content of specified dynamic array
|
void |
JDynArray.replace(JDynArray data,
int amc,
int vmc,
int svmc)
Replaces the given attribute, value or sub-value
with the content of specified dynamic array
|
void |
JDynArray.replaceDA(JDynArray data,
int amc)
Replaces the given attribute
with the content of specified dynamic array
Same as replace(JDynArray, amc)
|
void |
JDynArray.replaceDA(JDynArray data,
int amc,
int vmc)
Replaces the given attribute or value
with the content of specified dynamic array
Same as replace(JDynArray, amc, vmc)
|
void |
JDynArray.replaceDA(JDynArray data,
int amc,
int vmc,
int svmc)
Replaces the given attribute, value or sub-value
with the content of specified dynamic array.
|
void |
JCommon.setDA(int index,
JDynArray dynArray)
Stores a dynamic array into a specific position in a common block
|
void |
JFile.write(java.lang.String key,
JDynArray data)
Writes a record to the file releasing the lock if there is one
|
void |
JFile.write(java.lang.String key,
JDynArray data,
boolean unlock)
Writes a record to the file optionally releasing the lock
|
void |
JFile.writeNamedField(java.lang.String key,
java.lang.String field,
JDynArray data)
Writes a named record field to the file
|
void |
JFile.writeNamedField(java.lang.String key,
java.lang.String field,
JDynArray data,
boolean unlock)
Writes a named record field to the file optionally releasing the lock
|
void |
JFile.writeV(java.lang.String key,
JDynArray data,
int attrib)
Writes a record attribute to the file releasing the lock if there is one
|
void |
JFile.writeV(java.lang.String key,
JDynArray data,
int attrib,
boolean unlock)
Writes a record attribute to the file optionally releasing the lock
|
Constructor and Description |
---|
JDynArray(JDynArray src)
Constructs a dynamic array from another dynamic array
|