Re: Creating a Data Dictionary

2010-07-12 Thread Michael Dykman
A data dictionary, as the term is generally used, is what is contained in INFORMATION_SCHEMA. It is meta data describing the types and names and structure of the data within a given domain. Python's concept of a dictionary is what other language call a hash (perl), an associative array (awk,php)

RE: Creating a Data Dictionary

2010-07-12 Thread Jay Blanchard
[snip] Perhaps I have a conflict of terms here, but my googling "mysql data dictionary" turned up material that didn't seem to correspond with my problem. In python I can create dictionaries: my_dict = {'1': 'one', '2': 'two'} Now, I would like to create the equivalent of an enum in which I could u

Re: Creating a Data Dictionary

2010-07-12 Thread Michael Dykman
No such thing in SQL On Mon, Jul 12, 2010 at 10:39 AM, Victor Subervi wrote: > Hi; > Perhaps I have a conflict of terms here, but my googling "mysql data > dictionary" turned up material that didn't seem to correspond with my > problem. In python I can create dictionaries: > my_dict = {'1': 'one'

Creating a Data Dictionary

2010-07-12 Thread Victor Subervi
Hi; Perhaps I have a conflict of terms here, but my googling "mysql data dictionary" turned up material that didn't seem to correspond with my problem. In python I can create dictionaries: my_dict = {'1': 'one', '2': 'two'} Now, I would like to create the equivalent of an enum in which I could util