Welcome
Little Database (LDB) Action Plugin
1.0.0.1
Little Database (LDB) Action Plugin for managing little local Database ( Little DataBase = LDB )
Freeware
RizlaUK @ D-Net Software
www.dnet-software.com
support@dnet-software.com
D-Net Software
LDB.Open
LDB.Create
LDB.InsertRecord
LDB.Save
LDB.Write
LDB.CountRecords
LDB.Read
LDB.SetPointer
LDB.GetPointer
LDB.DeleteRecord
LDB.CountFields
LDB.GetFieldName
LDB.NextRecord
LDB.PrevRecord
LDB.Close
LDB.WriteCell
LDB.ReadCell
(boolean) LDB.Open ( | (string) File ) |
Open an existing LDB file.
(string) The full path to the LDB file.
(boolean)
(boolean) LDB.Create ( | (string) File, (string) Fields ) |
Create a new empty database with the given fields
(string) Full path to a LDB file, if the file exists it will be over written.
(string) Comma separated string of header fields.
(boolean)
LDB.InsertRecord ( | (number) Index ) |
Insert a record at position 'Index', -1 add a record as the last record
(number) The index where to insert the record, use -1 for last record.
This action dose not return any value.
LDB.Save () |
Saves the current LDB file to disk.
This action dose not return any value.
LDB.Write ( | (number) Field, (string) Text ) |
Write text in the field 'Field'
(number) The index of the field to write to
(string) The text to write.
This action dose not return any value.
(number) LDB.CountRecords () |
Return the number of records in the LDB file
(number)
(string) LDB.Read ( | (number) Field ) |
Read the specified field in the current record ( 0 return "" )
(number) The index of the field to read
(string)
LDB.SetPointer ( | (number) Index ) |
Set the index of the current record
(number) The index of the current record.
This action dose not return any value.
(number) LDB.GetPointer () |
Get the index of the current record.
(number)
LDB.DeleteRecord ( | (number) Index ) |
Delete the record at the given index.
(number) The index of the record to delete
This action dose not return any value.
(number) LDB.CountFields () |
Count the number of Fields
(number)
(string) LDB.GetFieldName ( | (number) Index ) |
Get a field name
(number) The index of the feild to get the name of.
(string)
LDB.NextRecord () |
Set the pointer to the next record
This action dose not return any value.
LDB.PrevRecord () |
Set the pointer to the previous record.
This action dose not return any value.
LDB.Close () |
Close the open Database
This action dose not return any value.
LDB.WriteCell ( | (number) Row, (number) Cell, (string) Text ) |
Write text in the indecated Cell.
(number) The index of the row the cell is in.
(number) The index of the cell to write to.
(string) The text to write.
This action dose not return any value.
(string) LDB.ReadCell ( | (number) Row, (number) Cell ) |
Reads text from the indecated Cell.
(number) The index of the row the cell is in.
(number) The index of the cell to write to.
(string)
D-Net Software
This File Was Generated With AMS ActionFile Editor