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, March 18, 2015

Split string using delimiter in sql server

›
Create Function [dbo].[SplitString](@String varchar(8000), @Delimiter char(1)) returns @temptable TABLE (items varchar(8000),id int) ...

Way to find row details of all tables in a DB - SQL

›
SELECT t.NAME AS TableName, i.name as indexName, p.[Rows], sum(a.total_pages) as TotalPages, sum(a.used_pages)...
Monday, March 16, 2015

Simple two-way encryption for C#

›
Simple AES using System; using System.Data; using System.Security.Cryptography; using System.IO; public class SimpleAES {...

AES Encryption / Decryption for JAVA

›
package org.ferris.aes.crypto; import java.io.UnsupportedEncodingException; import java.security.Key; import java.security.spec....
3 comments:
‹
›
Home
View web version
Powered by Blogger.