4a3f3df9cab079354e8a9f4cf6c56f616f1ea0ab kent Fri Apr 6 16:29:22 2012 -0700 Removing MySQL linking dependency. diff --git src/utils/autoSql/doc.as src/utils/autoSql/doc.as new file mode 100644 index 0000000..5883e03 --- /dev/null +++ src/utils/autoSql/doc.as @@ -0,0 +1,17 @@ +table addressBook +"A simple address book" + ( + string name; "Name - first or last or both, we don't care" + string address; "Street address" + string city; "City" + uint zipCode; "A zip code is always positive, so can be unsigned" + char[2] state; "Just store the abbreviation for the state" + ) + +table symbolCols +"example of enum and set symbolic columns" + ( + int id; "unique id" + enum(male, female) sex; "enumerated column" + set(cProg,javaProg,pythonProg,awkProg) skills; "set column" + )