Ejemplo n.º 1
0
        public static void SelectRow(SQLiteCommand command, string relPath)
        {
            Dictionary <string, string> conDict = new Dictionary <string, string> {
                { DBDwgFileName.RELATIVE_PATH, DBDwgFileName_AT.relPath }
            };
            Dictionary <string, object> paraDict = new Dictionary <string, object> {
                { DBDwgFileName_AT.relPath, relPath }
            };

            DBCommand.SelectRow(DBDwgFileName.name, conDict, paraDict, command);
        }
Ejemplo n.º 2
0
        public static void GetPNoteFile(SQLiteCommand command)
        {
            int isNote = 1;
            Dictionary <string, string> conDict = new Dictionary <string, string> {
                { DBDwgFileName.ISP_NOTES, DBDwgFileName_AT.iNote }
            };
            Dictionary <string, object> paraDict = new Dictionary <string, object> {
                { DBDwgFileName_AT.iNote, isNote }
            };

            DBCommand.SelectRow(DBDwgFileName.name, conDict, paraDict, command);
        }