
PT-Basic Programming Manual Ver. 1.00 85/143
data$ = "Happy, TEST, DBMS"
DBMS_APPEND_DATA(1,data$)
DBMSID% is an integer variable in the range from 1 to 10.
data$ is a string variable indicating the data of record introduced.
To delete the appointed record in the file.
DBMS_DEL_DATA(DBMSID%,record%)
DBMSID% is an integer variable in the range from 1 to 10.
Record% is an integer variable indicating the appointed record to
be deleted.
To remove all records in the file.
DBMSID% is an integer variable in the range from 1 to 10.
To search the designated field.
A%=DBMS_FIND_RECORD(DBMSID% , field% , key$)
A% = DBMS_FIND_RECORD(1, 2, " TEST3")
PRINT A%
A% is an integer variable to be assigned to the result.
Match the record position of data
Several key arguments as below:
Match wanted string data.
※This command only supports forward search.
To search the designated field.
A%=DBMS_FIND_RECORD_B(DBMSID% , field% , key$)
A% = DBMS_FIND_RECORD_B(1, 2, " TEST3")
PRINT A%
A% is an integer variable to be assigned to the result.
Comentarios a estos manuales