Code Master - A reference guide for programmer's

Programming is fun and interesting. As you all know, sometime we programmers stucks in the middle way of coding without getting a solution. Blogs like this will help us to find a path to solve our problems. The contents of this blog are the solutions that I found by myself and from other sources. Sharing such solutions is also interesting. Thank you!

Wednesday, December 9, 2015

Send SMS From SQL Server Using SMS API

›
Declare @MobileNo varchar(12)='Mobile Number', @smstext as varchar(300)='Message' Declar...
5 comments:
Wednesday, October 7, 2015

How To do Case Sensitive String Match in SQL Server

›
Using: COLLATE SQL_Latin1_General_CP1_CS_AS Example: select * from tblUser where userpwd='aBcD.123' COLLATE SQL_Latin1_Gen...
Sunday, June 28, 2015

C# Function to Convert Number to Words

›
public static string NumbersToWords(int inputNumber) { int inputNo = inputNumber; if (inputNo == 0) return ...
Thursday, May 28, 2015

Cursor Example in Sql Server 2008

›
Declare @name nvarchar(max) Declare cur cursor for select username from userdet open cur fetch next from cur into @name ...
‹
›
Home
View web version
Powered by Blogger.