Welcome
Database.RemoveColumn
Database.AddColumn
Database.GetColumnName
Database.SetColumnName
Database.Create
Database.Add
Database.UpdateRow
Database.UpdateRowItem
Database.Insert
Database.RemoveRow
Database.CountColumns
Database.CountRows
Database.ReadRow
Database.ReadRowItem
Database.SaveToFile
Database.LoadFromFile
Database.SetDelimiter
Database.GetDelimiter
|
(boolean) Database.RemoveColumn ( |
(tabel) Database, (number) Column Index ) |
Removes a column from the database, returns true if OK, else false is returned.
(tabel) A handle to a open database.
(number) The index of the column you want add to remove from the database.
This action returns a (boolean) value.
|
(number) Database.AddColumn ( |
(tabel) Database, (string) Column Name ) |
Adds a column to the database, returns column index if OK, else -1 is returned.
(tabel) A handle to a open database.
(string) The name of the column you want add to the database.
This action returns a (number) value.
|
(string) Database.GetColumnName ( |
(tabel) Database, (number) Column Index ) |
Returns the column name from the given index, if any error a blank string ("") is returned.
(tabel) A handle to a open database.
(number) The index of the column you want to get the name of.
This action returns a (string) value.
|
(boolean) Database.SetColumnName ( |
(tabel) Database, (number) Column Index, (string) Column Name ) |
Sets the column name at the given index, if OK then true is returned else if any error false is returned.
(tabel) A handle to a open database.
(number) The index of the column you want to rename.
(string) The new name for this column.
This action returns a (boolean) value.
|
(tabel) Database.Create ( |
(string) Column Names ) |
Creates a database in memory and returns a handle to it.
(string) A delimited string of the column names, the delimiter MUST be the same as set in Database.SetDelimiter or ("|") is default.
This action returns a (tabel) value.
|
(number) Database.Add ( |
(tabel) Database, (string) Values ) |
Adds a item to the end of the database and returns the index of the new item, if any error (-1) is returned.
(tabel) A handle to a open database.
(string) A delimited string of the values to add, the amount of values must match the amount of columns, the delimiter MUST be the same as set in Database.SetDelimiter or ("|") is default.
This action returns a (number) value.
|
(boolean) Database.UpdateRow ( |
(tabel) Database, (string) Values, (number) Row Index ) |
Updates/edits a row in the database, the row MUST exists, returns true if ok else returns false.
(tabel) A handle to a open database.
(string) A delimited string of the new row values, the amount of values must match the amount of columns, the delimiter MUST be the same as set in Database.SetDelimiter or ("|") is default.
(number) The index of the row to update/edit.
This action returns a (boolean) value.
|
(boolean) Database.UpdateRowItem ( |
(tabel) Database, (string) Values, (number) Row Index, (number) Column Index ) |
Updates/edits a item in the given row, the row and column MUST exists, returns true if ok else returns false.
(tabel) A handle to a open database.
(string) A delimited string of the new row values, the amount of values must match the amount of columns, the delimiter MUST be the same as set in Database.SetDelimiter or ("|") is default.
(number) The index of the row to update/edit.
(number) The index of the column to update/edit.
This action returns a (boolean) value.
|
(number) Database.Insert ( |
(tabel) Database, (string) Values, (number) Row Index ) |
Inserts a item into the database at the given index and returns the new items index, if the index is over the total database count then its added to the end, if any error (-1) is returned.
(tabel) A handle to a open database.
(string) A delimited string of the values to add, the amount of values must match the amount of columns, the delimiter MUST be the same as set in Database.SetDelimiter or ("|") is default.
(number) The index of the row to insert.
This action returns a (number) value.
|
(boolean) Database.RemoveRow ( |
(tabel) Database, (number) Row Index ) |
Removes a item from the database, returns true if the item was removed else returns false.
(tabel) A handle to a open database.
(number) The index of the row to remove.
This action returns a (boolean) value.
|
(number) Database.CountColumns ( |
(tabel) Database ) |
Returns the number of columns, if any error (-1) is returned.
(tabel) A handle to a open database.
This action returns a (number) value.
|
(number) Database.CountRows ( |
(tabel) Database ) |
Returns the number of rows, if any error (-1) is returned.
(tabel) A handle to a open database.
This action returns a (number) value.
|
(tabel) Database.ReadRow ( |
(tabel) Database, (number) Row Index ) |
Reads a database row and returns a numerically indexed table of the rows contents, the number of table elements will always be equal to the number of columns for that database, if any error a blank string ("") is returned
(tabel) A handle to a open database.
(number) The index of the row to read.
This action returns a (tabel) value.
|
(string) Database.ReadRowItem ( |
(tabel) Database, (number) Row Index, (number) Item Index ) |
Reads a database row item and returns the value as a string,if any error a blank string ("") is returned
(tabel) A handle to a open database.
(number) The index of the row to read.
(number) The index of the item to read.
This action returns a (string) value.
|
(boolean) Database.SaveToFile ( |
(tabel) Database, (string) Filepath ) |
Saves a database to file, returns true if ok else false is returned.
(tabel) A handle to a open database.
(string) The path of the database file
This action returns a (boolean) value.
|
(tabel) Database.LoadFromFile ( |
(string) Filepath ) |
Loads a database into memory and returns a handle to it.
(string) The path of the database file
This action returns a (tabel) value.
|
Database.SetDelimiter ( |
(string) Delimiter ) |
Loads a database into memory and returns a handle to it.
(string) Sets the global delimiter of the database.
This action dose not return any value.
|
(string) Database.GetDelimiter () |
Gets the global delimiter of the database.
This action returns a (string) value.
Made with Action Plugin Compiler