コード例 #1
0
ファイル: tParameter.cs プロジェクト: robson525/vox
        public bool GetDataLike(String pIDParameter)
        {
            String sSQL = "SELECT " + this.GetColumns() + " FROM " + this.TableName + " WITH (NOLOCK) WHERE IDParameter LIKE " + pIDParameter.AddLikeOperator(false, true, true);

            return(Execute(sSQL));
        }