Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

Search In

Why Collaborative Teams Should Go for Project Management Software

The utilization of the latest technology is necessary for establishing an efficient workflow within a company. One of the best ways to achieve this goal is to implement a simple project management software tool for free. As collaboration has become a

Best Practices : Version Control

Irrespective of the technologies used like .Net,Java or PHP software versioning plays a critical role in software development. In this blog we will go through a set of best practices for successful implementation of version control in an organization

Count number of rows and fields in a result set using MySQLi functions

In my previous articles we learned how to perform CRUD operation using MySQLi Procedural and Object Oriented style. On performing CRUD operations, the data of MySQL table are affected. This article provides the details of functions which can be used

Implement Pagination Using Cakephp

This tutorial will help you to learn how to implement pagination using cakephp framework Requisite: Create a database Insert some data in the table Controller say “UsersController” to write the logic. Model for the Users table View to display t

Java Thread Example

Thread: Thread is a lightweight process. Thread requires less memory space and resources to create and exists in the process, thread shares data and resources of the process. Every Java application has at least one Thread (main thread). There are so

Login CakePHP

We can create a login function for logging in using cakePHP. The login functionality can be added using the Auth component available in the cakePHP. You do not need to create the session or check for encrypted password in the database as Auth compo

6 useful code chunks for java coders.

Convert Java util.Date to sql.Date This piece of code shows how to convert a java util Date into a sql Date for use in database. java.util.Date util_date = new java.util.Date(); java.sql.Date sql_date = new java.sql.Date(util_date.getTime()); C

Difference between DELETE and TRUNCATE in MySQL.

In MySQL, DELETE and TRUNCATE both are used for deleting data from table. DELETE DELETE comes under DML(Data Manipulation Language). DELETE can be used to delete a particular row by using WHERE clause. It is slower than TRUNCATE as it keeps logs.

Tips for Successful Project Completion

Project Management, a quite interesting stuff and full of challenges. However, everyone has different view in project management and ways for successful project completion. Here I have jolted down few points for successful project completion : Re

Migrations in Rails: PART 1 - Introduction and Creating Tables

Migrations in rails are basically used for executing DDL (Data Definition Language) statements. The main tasks of migrations are: 1. Creating tables 2. Updating Schemas 3. Altering tables 4. Dropping tables Each migration works as a new version of

1 100 161
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: