information_schema is a built in database following the rules of relational databases that metadata must be available in the same format as regular tables and relationships. Thus you can use regular SQL commands with information_schema to gather information about your entire MySQL setup, such as which databases you have, tables, columns and so forth. In phpMyAdmin I can view the records in the various tables of this metadata. (the table named "tables" gives a list of all tables with one field specifying which database the table belongs to..same for columns with a field specifying what table it belongs to).
Now in phpMyAdmin, I can view these records as I stated but not edit. (This kinda makes sense, because we would edit them by using SQL commands...CREATE TABLE to add a record to the tables table for instance...) But I got to thinking maybe we could if not create and edit those records in Dataface, at least read them. So I set up a dataface test with the following in the conf.ini:
[_database]
host = "blabla"
user = "blabla"
password = "blabla"
name = "information_schema"
[_tables]
TABLES = "TABLES"
And it does kinda work. I get the tabs no problem. But I only get one record displayed. It seems to be a kind of random record as well.
Anyhow this isn't one of those major things or something I'm trying to get support on. Just postin some experimenting I have been doing and the results of it.