
Search In
What is form Validation ?
This is the process to validate web form according to our data format, when the user try to submit wrong data in the field, server will not submit wrong data because we have restricted(validate) the all field accordi
Rails is a language particularly known for its rapid development and shortcut commands that make development of applications and its modules fast and easy. Today I am going to tell you about few most basic commands of rails:
1. rails new:
This com
Hello Reader's ,
Hope your are doing good today.
Today in my blog i am going to explain how you can save details with BelongsTo Associations in CakePHP 3.
If you have multiple record for a single user, then you need to split your record into se
In the business world, one of the most important aspects in ensuring you tap into success or deliver results to clients is being able to be efficient. And there are many ways to achieve that. But one way of not achieving efficiency is using devices t
Hello Reader's!, If you are developing the html 5 based form and need to show the progress bar of file uploading then you can use the following code written in PHP and Javascript:-
The PHP html file will be go like this:-
<?php
//get unique id
Basic Hibernate Mapping:
One to one mapping
One to one mapping is performed by one-to-one element. No foreign key is created in primary table.
Let us see one simple example, in which we are using bidirectional association.
There are two persist
I tried to run the below code
public class TestSelendroidApp {
public static AndroidDriver driver;
public static void main(String[] args) throws MalformedURLException, InterruptedException {
File app = new File("E:\software\selendroid-t
In MySQL join is used to combine records from 2 or more tables based on a common column between them.
INNER JOIN: It returns all rows when there is a match in both tables.
LEFT JOIN: It returns all rows from the left table and matched rows from the
While working with ADO.NET you need to understand the thing why SqlCommand is used.
We have two kind of operations related to database:
1 That will make changes in the database
Insert
Update
Delete
2 That will n
Technology: Spring-jdbc is the abstraction framework, it take care the below following list:
1) Defining connection parameters
2) Open Connection
3) Specify the statement
4) Prepare and execute statement/prepared statement
5) Iterate thr
