Archive for the ‘Development’ Category

What Is A Relational Database?

Posted by admin on March 6th, 2010 under Development  •  No Comments

Databases are applications that are able to rapidly store and retrieve data. A relational database is a reference to how storage and organization takes place within a particular type of database. The term relational database is actually a shortened version of Relational Database Management System (RDBMS).
All data is stored in structured tables and have more [...]

Introduction to SQL

Posted by admin on March 5th, 2010 under Development  •  No Comments

Structured Query Language, known more popularly as SQL is an extremely popular non-procedural language that allows you to manipulate a relational database. In this regard, SQL can be categorized under two classes.
Firstly, it falls under the Data Manipulation Language (DML) class as it is used for retrieving and storing data. Secondly, it falls under the [...]

VBA Programming - Simple Code for Forms

Posted by admin on February 28th, 2010 under Development  •  No Comments

Knowledge of Visual Basic Application (VBA) programming can be very useful when dealing with Microsoft Access. You should keep in mind that VBA is event-driven and very good when dealing with customized user forms and dialog boxes. Do not worry if you have no experience with VBA, as it is easy to learn and perhaps [...]

An Introduction to Javascript

Posted by admin on February 28th, 2010 under Development  •  No Comments

JavaScript (JS) is primarily targeted at relieving the “boredom” caused by static HTML pages. JS is a dynamic language which can respond to user actions. Therefore clicking actions and placing the mouse on top of an object can be made to cause reactions.
A “behavior” is the title given to how an object will react. Behaviors [...]

Programming Concepts - Variables

Posted by admin on February 21st, 2010 under Development  •  No Comments

Variables can are found in all programming languages. These are designed to be used to store values which can then be manipulated by the program. In a very basic way, variables can be thought of as containers of differing types. The differentiation comes with the fact that each variable has to be associated with a [...]

A Good Programming Language for Beginners

Posted by admin on February 20th, 2010 under Development  •  No Comments

Getting into programming is a very interesting experience. This is because writing computer programs require you to alter the way you would normally think. Programming is all about breaking down a problem into smaller pieces and sticking to the rules. The former helps you solve the task you have at hand and the latter will [...]

Programming Concepts: Data Types

Posted by admin on February 14th, 2010 under Development  •  No Comments

Programming involves a very methodical approach to problem solving. In this process, there are rules that help maintain the order and legibility of the code. Some of these rules involve Data Types.
These data types help to segregate and limit the type of data that is held or processed by the code. For example, if you [...]

Advantages of using Visual Basic for Applications over Macros

Posted by admin on February 13th, 2010 under Development  •  No Comments

Microsoft Access allows users to easily create and manipulate databases. While it has many useful features, there are times when you have to customize certain tasks due to functionality requirements. Due to this, many users resort to using Macros.
Macros are a set of stored commands. Usually repetitive tasks can be locked down in macros and [...]

Top “rookie” Open Source Languages

Posted by admin on February 4th, 2010 under Development  •  No Comments

Black Duck, a software-license code analysis vendor constantly evaluates open source software. Recently their list of top “rookie” open source software was released.
The winner was Google’s Android OS and closely followed by a variety of gaming, cloud computing and healthcare based software. The list is mainly compiled to be a fun event rather than provide [...]

Go - Google’s own programming language

Posted by admin on February 4th, 2010 under Development  •  No Comments

When it comes to products from Google, users have come to expect groundbreaking innovative revelations. Go, a programming language designed by Google, has not made that mark quite yet.
At the very basic level, Go is a remake of object-oriented C, but it does have some interesting features. Designed primarily with Google programmers in mind, it [...]