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

Search In

NSTimer In Swift

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

Paging in Repeaters

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

  • 305
NORMALIZATION IN DBMS

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

C# : How to create a folder if it does not exist ?

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

Pagination In Wordpress

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

White box testing vs Black box testing

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: 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

Using hasOwnProperty() method in "for...in" loop JS

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

Reverse an array without affecting special characters?

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 and NOT BETWEEN Operator

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

1 292 949
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: