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

Search In

Views in SQL Server

Views are virtual tables that are compiled at run time. The data associated with views are not physically stored in the view, but it is stored in the base tables of the view. A view can be made over one or more database tables. Ex: create view my

slice() method of the JavaScript Array

JavaScript Array slice() method : The slice() method is used to get the elements between two position. The slice() method returns the array of extracted elements. It doesn't change the original array. The index starts from 0. Syntax of the Array s

Media Manager in Joomla

Media Manager manages the Joomla images. It uploads and deletes the files from [joomla root]/images/ directory. You can upload files, create directories and sub directories using this tool. To access media manager click on Content -> Media Manage

Delete object from Parse table in iOS.

If you want to delete an object from Parse DB then you have to run a query to fetch that object and then run a loop to delete it. If you already have that object then just call delete method. Here is the complete code. PFQuery *query = [PFQuery quer

How to delete duplicate data in Oracle SQL?

Let's create a table with duplicate rows in SQL. create table CustomerDuplicate(customer_id int,customer_name varchar(20)) insert into CustomerDuplicate values(1,'Adam') insert into CustomerDuplicate values (1,'Adam') insert into CustomerDuplicate

How to select images from database and show on page

Hello Reader's! If you have stored the image in database as blob. Then you need a php code to retrieve them and a html page to show them. Lets see an example below how to show them First create a php page getImage.php and code as written below:- &l

Checking NULL values in SQL

While working with SQL you always face columns with NULL values. For avoiding that you can put a check on it. NULL value is something that is different from nothing and space ALTER proc [dbo].[sp_GetMailToEmployee] ( @EmployeeID int ) as begin

  • 204
Difference between yield and return statement in C#.

return statement in C# Example to demonstrate return statement: static int SimpleReturn() { return 1; return 2; return 3; } static void Main(string[] args) { Console.WriteLine(SimpleReturn()); Console.WriteLine(SimpleRetu

Php: How to convert currency using Google Finance ?

In this blog I am going to tell you how to convert currency using Google Finance. Example: you want to convert Indian Rupee to American Dollar i.e. INR to USD then you can convert it using following url: http://www.google.com/finance/converter?a=$amo

Extract frame from video in Android

There are many cases where one need to extract frames from video irrespective of its length. With the given function one can retrieve the desired number of frames per second. ArrayList<Bitmap> frameList; String absolutePath;

1 229 258
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: