Deveel.Data.Sql.Statements.ShowStatement.ShowSchema C# (CSharp) Method

ShowSchema() private method

private ShowSchema ( ) : SqlStatement
return SqlStatement
        private SqlStatement ShowSchema()
        {
            var sql = "SELECT \"name\" AS \"schema_name\", " +
                      "       \"type\", " +
                      "       \"other\" AS \"notes\" " +
                      "    FROM " + InformationSchema.ThisUserSchemaInfoViewName + " " +
                      "ORDER BY \"schema_name\"";

            return Show(sql);
        }