
Search In
Hi all,
You can use the NSTimer class to create timer objects or, more simply, timers. A timer can wait and call a method or selector after defined period of time. for example :- if you want show a seconds clock and stop when it completed 60 seconds
For implementing paging in Repeaters we will first create a stored procedure in which we will define the row number for every record and this will allow to iterate the records into the temp table and the page size which will define the upper bound
NORMALIZATION
Database is a collection of meaningful data by which we can easily upload,update,delete and manage data.
while creating a database the main problem which encounter is data redundancy. Data redundancy is condition in which same piece o
Many times in application development using C# it is required to create a folder if it does not exist.
We can use the below method of C# to accomplish the same:
System.IO.Directory.CreateDirectory(folderPath);
Following is the code for creation of
We can add pagination to our page.
In wordpress we can split multiple post in different pages.
We can set how many post per page we want
When multiple loops are used in a theme template file only one loop, the main loop, can be paginated.
<?ph
Testing: Testing is the process of executing a program with the intent of finding errors. Manual testing is a testing process to find defects manually.
White box testing:
1.White Box Testing is a software testing method in which the internal st
Dual table:
DUAL table is a dummy table which
contains one row and one column and
by default it is present in
database.It contains a single
VARCHAR2(1) column known as DUMMY
with a value "X".
It can be accessed by all users but
the owner of DUAL
We all know that for...in loop is used to iterate over enumerable properties of object as well as properties of its prototypes, but what if we want to iterate over properties attached to the object itself, and not its prototypes.
this is where hasOw
Program to Reverse an array without affecting special characters in C++
using namespace std;
bool isAlphabet(char x) // Function returns true if an alphabet
{
return ( (x >= 'A' && x <= 'Z') ||
(x >= 'a' &&am
BETWEEN Operator:
It is used to fetch values which lies within a range given in BETWEEN operator.
Syntax:
SELECT columnname(s)
FROM tablename
WHERE columnname BETWEEN value1 AND value2;
Example:
SELECT * FROM Employee
WHERE Salary BETWEEN 100
