Hi, I have a following file names in my database. TestDocument _ 1 _ 0 TestDocument _ Evidence Test45 123_publish when i am entering the Test_ in the DocumentName textbox it is forst converted to uppercase and send to the query and query has following expression which returns all record where it should not have to return any record. please tell me the changes in the following expression. I am using the Oracle10g database. UPPER(DOC.ORIGINAL_FILE_NAME) like '%TEST_%' Thanks, Umesh Tayade .
User 4547220
Posts
-
Using wildcard character -
Using Wild Character _ [modified]Hi, I am using Oracle10g database. Thanks, Umesh Tayade
-
Using Wild Character _ [modified]Hi, I know that there is no document with the name TEST in my database but what i am telling is that when i search for TEST_ it should not have to return any records. but it is returning the records. Thanks, Umesh Tayade Never Underestimate the power of Human Stupidity
-
Using Wild Character _ [modified]Hi, I have a following file names in my database. TestDocument _ 1 _ 0 TestDocument _ Evidence Test45 123_publish when i am entering the Test_ in the DocumentName textbox it is forst converted to uppercase and send to the query and query has following expression which returns all record where it should not have to return any record. please tell me the changes in the following expression. UPPER(DOC.ORIGINAL_FILE_NAME) like '%TEST_%' Thanks, Umesh Tayade .
modified on Tuesday, May 24, 2011 6:32 AM
-
Using WildCard CharacterHi, In my application i have a search criteria field in which one document name field is there. I have a document in my database with name $#%#$. Now, I want to search for document by entering only %. How i do that? I tried differnt things but its not working. If i entered % in the document name field it gives me all the document.But, I want only that document. Thanks, Umesh Tayade
-
Replacing WildCard CharacterHi, Thanks for Answering, but replacing it in that way it gives all the records from the database. I have replaced the & by Ascii value of it(&) and its working. inputSQL.Replace("&", "&"); Thanks, Umesh Tayade
-
Replacing WildCard CharacterHi, I got the Answer. I Replaced & by ascii value of it(&). Its Working.
-
Replacing WildCard CharacterHi, I want to replace the wildcard character '&'. Actually Entering the & as a input in search criteria gives all records. I want to replace that character so that i won't get any record for that. I am using Oracle as database. Thanks, Umesh Tayade
-
About Apllication More Memory usageHi, I had checked it in Task Manager. Actually i havent devoloped this Application. I am just going through it and i came to know that it is making full cpu usage. can suggest me what are the possibilities of it? How do i overcome it? Thanks, Umesh Tayade
-
MVVM ModelHi, I read about MVVM model. Using MVVM model i can reduce the code behind. What does it Mean? As MVVM model is separating the view, Model and ViewModel. What is the actual use of ViewModel. can't I bind the data from model itself rather than ViewModel? Thanks, Umesh Tayade
-
About Apllication More Memory usageHi, My Project is devoloped with silverlight4. In my Project i have used some telerik controls with version 3. But, the problem with my application is it is taking too much memmory. Actually my Application is showing records for perticular order no, so, can u help me. How can i reduce the memory? Thanks, Umesh Tayade
-
Use of Observablecollection in SilverlightHi, Thanks. I understaqnd it now. I am new to Silverlight. But i am working on the project which is based on silverlight. This project is completed but i am trying to understand this. Would you please suggest me some resources to learn silverlight as early as possible (Books ,Sights, etc.). Thanks Umesh Tayade
-
Use of Observablecollection in SilverlightSorry, but i am not getting what exactly i want. Actually I am new to silverlight so i am not clear with it. In the Given code (Populating a DataGrid in a Silverlight Application using MVVM) it is not calling the PropertyChanged Event. Can u provide code which calls that event.
-
Use of Observablecollection in SilverlightCan u please explain me how the changes to the _studentList can reflect to UI with code?
-
Use of Observablecollection in SilverlightHi, I have Question about the use of Observable Collection? During reading about MVVM Pattern i read about the observable collection that it reflect the changes to the UI Automatically which is not possible in the List collection.But i really dont understand it what it exactly means in practical terms. I want a demo for the Difference between the List VS ObservableCollection Vs PropertyChangedEventHandler. I have read the document on your site but i am yet not clear about it? will you please help me?