コード例 #1
0
ファイル: Database.cs プロジェクト: Johnsh111/Azure
        public string ParsePreferenceQuery(string sql)
        {
            // only parse if preferences are defined (standart sql is currently not supported by library)
            if (!sql.Contains(" PREFERENCE "))
            {
                return(sql);
            }
            var common = new SQLCommon();

            return(common.parsePreferenceSQL(sql));
        }