|
TablePropertie |
|
package Structure;
import j4d.open.*;
class Examplet {
/* getNumberUsers allows you to retrieve the number of connected users.
*/
public void getTableProperties(opProcess process, int numTable) throws opException{
opTable targetTable = new opTable(numTable);
try {
process.GetTableProperties(targetTable);
//How many fields in the target table ?
int nbRecordsInTable = targetTable.mFieldList.mSize;
}
catch (opException er){throw er;}
}
}
|
TablePropertie |
|