Skip to content


SQL Server – Normalization

If you’re learning SQL server then you’ll often stumble onto term called “normalization”. So in this article we’ll discuss what normalization is and what are the different types of normalization. Continued…


Windows DNA Architecture

Those who have idea of classic ASP knows what is Windows DNA architecture. But those who are using .NET architecture for ASP needs to understand what was DNA architecture. Let’s take a look at what windows DNA architecture is all about. Continued…


SQLite Administrator

If you’re using SQLite for your small apps then using GUI interface for database creation can be handy. There is no official GUI tool for manipulating SQLite database. There are some 3rd party gui tools for sqlite. Few tools are either discontinued or are still packaged with old version of sqlite. Continued…


Source Code Escrow

A source code escrow is a part of software escrow service which protects software sourcecode in the events like bankruptcy, trade secrecy etc. Source code escrow service is preferred by many businesses that outsource their work to third part software services. Software escrow agent is a media between two parties which is usually requested by licensee who is going to maintain the software. Source code escrow service becomes important in the events when licensor unable to maintain the software and in such case source code will be released to licensee with the agreement of software escrow service. Continued…


JIT Compilers in .NET Environment

JIT (Just in time) compiler is a part of the .NET runtime execution environment. Unlike traditional compilers JIT doesn’t
compile the full class file in one shot. Compilation is done on function basis or file basis. JIT compilation has advantage
over traditional compilation that heavy parsing of original source code is avoided. Compilation in .NET is done on the basis
and it’s in steps most of the time. Continued…