c#,sql
my question is when i insert record in sql from c# windows form..i mean suppose my records are in small letters...bt when record is saved in database...it saved in uppercase letter.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Kunal VaishyaPosted Oct 3, 2012, 5:52 AM
In Coding Side
TextBox1.Text.ToUpper()
In Data Base Sp Side Or Query Side
Insert Into CatMast (CatName,CatDesc ) Values (Upper('indexi'),Lower('aasdas'))
Nitesh KejriwalPosted Oct 3, 2012, 1:11 AM
Satyapriya NayakPosted Oct 3, 2012, 12:47 AM