private function ParseForIndexes($strCreateStatement) {
            // MySql nicely splits each object in a table into it's own line
            // Split the create statement into lines, and then pull out anything
            // that says "PRIMARY KEY", "UNIQUE KEY", or just plain ol' "KEY"
            $strLineArray = explode("\n", $strCreateStatement);