Shaikh Sonny Aman’s Blog

previously www.mailtoaman.com

ASP.net C#: Easily switch between SQL server database and access by an abstraction layer

Problem:
You are developing an asp.net application which runs on MS SQL server on the back end. You need to show a demo to a person who does not have MS SQL Server. You have to create or export to a access database.
or
Learning ASP.net,C# newly
Challenges:
You have to choose SqlConnection ,SqlCommand or OleDbConnection, OldeDbCommand for [...]

How to create MS SQL Server 2005 unique key step by step example

Looking at the title many of you may think what is the justification to write so basic stuff!
I admit. Honestly I also admit that I was searching for this over Google ! I am totally new to SQL server environment and also have no idea about its IDE. MySQL and PostgreSQL are the two DBMS [...]

SQL Server permission problem in vista solved

Recently I migrated to Window Vista and enjoying its cool looksand features.
I was facing a weird problem with SQL Server. I am using SQL Server2005 express edition that was available with VS 2005.
When I was trying to create a database the following problem raised:
 
As a result, I could not create any Database !! I [...]

How to unit testing with Visual Studio Team System 2008

 
Testing is a vital part of any software project. In modern developmentprocesses it is an umbrella task.
Visual Studio Team System 2008 offers an excellent way to perform various types of test. It made testing as easy as it gets.
Lets see how to perform unit testing over a class.
Steps:

Create a web project.
Add a new class
write [...]

Fedex localization with ASP.net-C#

Eventually I have got some free time to relax and to learn. Fortunately this time also turned to a time to earn some
After a long time I worked as free lancer for a week. My brother from US gave me subcontract. The project was mainly to localize Fedex international website as well as [...]

Using Eclipse is Fun !

My current project is about building an embedded software using C++ on a ARM board. Due to some reasons we had to use use Eclipse as we are to use a proprietary tool chain plug-in of the editor. Anyhow, eclipse was too slow to proceed development work fast where deadline [...]

NetBean, even more fun

I am not going to raise another holly war between netbeans and the eclipese IDE. But, even though eclipse ide worked great after little tweaking, i think everything work better after they are tweaked, I love netbeans for its simple and fast interface. I know, many of you already frowned as called netbeans fast ! [...]

Using Eclipse is Fun !

My current project is about building an embedded software using C++ on a ARM board. Due to some reasons we had to use use Eclipse as we are to use a proprietary tool chain plug-in of the editor. Anyhow, eclipse was too slow to proceed development work fast where deadline [...]

NetBean, even more fun

I am not going to raise another holly war between netbeans and the eclipese IDE. But, even though eclipse ide worked great after little tweaking, i think everything work better after they are tweaked, I love netbeans for its simple and fast interface. I know, many of you already frowned as called netbeans fast ! [...]

C++ Member initialization

Many of us may not know that member variables of a class object is initialized before the body of the constructor is executed! The class type members are initialized with the default constructor i.e. constructor with no arguments. Primitive type member variable like int, float etc does not have any constructors, so [...]

keep looking »