GetRows() публичный Метод

public GetRows ( string SelectStatement ) : bool
SelectStatement string
Результат bool
Пример #1
0
        public Glyph(string ID, bool LoadImages)
        {
            if (db.GetRows("select * from glyphs where glyph_id = " + ID))
            {
                this.ID        = ID;
                this.FontID    = db.GetCell(0, "glyph_font_id");
                this.Unicode   = db.GetCell(0, "glyph_unicode");
                this.Frequency = System.Convert.ToInt32(db.GetCell(0, "glyph_frequency"));
                this.XOffset   = System.Convert.ToInt32(db.GetCell(0, "glyph_x_offset"));
                this.YOffset   = System.Convert.ToInt32(db.GetCell(0, "glyph_y_offset"));
            }

            if (LoadImages)
            {
                RefreshImages();
            }
        }
Пример #2
0
 public Language(string LangID)
 {
     if (db.GetRows("select * from languages where lang_id = " + LangID))
     {
         ID   = LangID;
         Name = db.Bucket.Rows[0]["lang_name"].ToString();
     }
 }
Пример #3
0
 public SubList()
 {
     if (db.GetRows("select * from character_subs"))
     {
         foreach (DataRow DR in db.Bucket.Rows)
         {
             Characters.Add(DR["cs_character"].ToString(), DR["cs_sub"].ToString());
         }
     }
 }
Пример #4
0
 public GlyphImage(string ID)
 {
     if (db.GetRows("select * from images where img_id = " + ID))
     {
         this.ID      = ID;
         this.GlyphID = db.GetCell(0, "img_glyph_id");
         this.Path    = db.GetCell(0, "img_path");
         this.Status  = db.GetCell(0, "img_status");
     }
 }
Пример #5
0
        public Font(string ID, bool LoadGlyphs, bool LoadImages)
        {
            if (db.GetRows("select * from fonts where font_id = " + ID))
            {
                this.ID         = ID;
                this.LangID     = db.GetCell(0, "font_lang_id");
                this.Name       = db.GetCell(0, "font_name");
                this.LineHeight = System.Convert.ToInt32(db.GetCell(0, "font_line_height"));
                this.Italic     = System.Convert.ToInt32(db.GetCell(0, "font_italic"));
                this.Bold       = System.Convert.ToInt32(db.GetCell(0, "font_bold"));
                this.Fixed      = System.Convert.ToInt32(db.GetCell(0, "font_fixed"));
                this.Serif      = System.Convert.ToInt32(db.GetCell(0, "font_serif"));
                this.Fraktur    = System.Convert.ToInt32(db.GetCell(0, "font_fraktur"));
            }

            if (LoadGlyphs)
            {
                RefreshGlyphs(LoadImages);
            }
        }