
Search In
Moving Your Data Warehouse to the Cloud
Is your data warehouse in the Cloud? Are you thinking of moving it there? Once there, what if you want to change to a faster, cheaper database?
Moving to the Cloud can be a great u
Retrieve the data from the database.
CakePHP come with the functions to get the data from the database.
find: It is a multifunctional function of all model data-retrieval function.
It is used under the controller.
It is used for fetching th
form_for
<%= form_for(@article) do |f| %>
<%= f.label :title %>
<%= f.text_field :title %>
<%end%>
In this example i supplied an object of article to the form_for method.
It will generate the following:
<
Hi Reader's,
Welcome to FindNerd, today we are going to discuss how to update one field in database using CakePHP?
If you want update some records or data in your web application database in CakePHP the you have to update your record based on pr
SQL Injection
Security of any Application plays a major role for any developer. Some of the users try to break the security of any application for their fun, for stealing the data .They use different methods to break the security and SQL Injection i
OpenERP is free enterprise resource planning software having various modules for sales, purchase, CRM, HRM, Accounting/finance, E-commerec etc. Later in may 2014 it has been rebranded as Odoo. Odoo stands for On Demand Open Object means that it is fr
As we already know that Parse.com provides a schema-less database. It provides a complete backed solution for mobile applications.
In order to register a user with parse, we use ParseUser class. It is a specialized class that automatically handles t
Auto-increment is used to allow a unique number when a new record inserted into a table. Generally we use Auto-increment to create value for primary key field automatically when a new record is inserted into a table.
Syntax:
The below statement cr
In MySQL, the DEFAULT constraint is used to insert value into a column in a table. If there is no value is specified for a column then the default value will be added to column for all new records.
DEFAULT Constraint on CREATE TABLE
The following s
Hi All
My Question is as follows.
Create a login page for your project. The login page must:
a. Accept a user’s name, surname, email address and password.
b. The password must be compared to a, e.g. hash “29ef52e7563626a96cea7f4b4
