functional overview
Reads the database and converts it to a dictionary.
Details of Functions
tabledata and converts them to dictionaries.
Stores column names as keys and data as values.
- note
- If the following "table" is read, the "dictionary to be created" will be the result.
tablefigure English (language) kanji 123 ABC one, two, three (used in legal documents) 456 DEF forty-five and sixty
key value figure 123 English (language) ABC kanji one, two, three (used in legal documents)
key value figure 456 English (language) DEF kanji forty-five and sixty
parameter
- argument (e.g. function, program, programme)
-
table Specify the target table. filter (esp. camera) character string data
Specify conditions.sort character string data
Sorts in ascending order by the specified field name.
To order the fields in descending order, append a space and "desc" after the field name.If "sort" is also specified when "order by" is specified for "filter", processing will result in an error. Either one should be used.
- return value
-
Dictionary (associative array)
Returns a converted dictionary from the database.