N a g a s a i
Software Engineer, Blogger, Gadgets, Sports, Circket, Movies and Gamer.
Saturday, May 29, 2021
How to Get Columns details from SQL Tables
›
Here is how you can get column names from specified table SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.Columns WHERE TABLE_NAME = ...
Friday, May 21, 2021
How to: Looping through reader count dynamically C#
›
Here is how this can be done once you have the data call via Read methods using ( var reader = await sqlDbContext.ExecuteReaderAsync(...
How to : Check if a column exists in a datareader in C#
›
Here is how we can do in C# supported Frameworks!! var fieldvalues = Enumerable.Range( 0 , reader.FieldCount).Select(i => reader.GetN...
How to Enable or Disable Fast User Switching in Windows PC
›
Fast User Switching is an easy way for another person to log on to the computer without logging you off or closing your programs and files. ...
Monday, April 19, 2021
How to get only numbers from string sql
›
I have column where I need to get only numbers form the string. Here is how we can do, SUBSTRING (columnName, PATINDEX( '%[0-9]%' ...
‹
›
Home
View web version