
Search In
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
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
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
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
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
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
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
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.
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 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
