
Search In
ADO.NET stands for ActiveX Data Object in the .NET framework.
ADO.NET is mainly used with .NET to make the database interaction with your application.
You need to understand that ADO is not only meant for simple data purpose.
Hello Friends,
When we are working on Codelgniter the URL in the browser appear with index.php generally, the URL appear like ::
"http://localhost/codelgniter/index.php/app/setuser"
and we would like to see this as
"http://
memcpy()
This method as the name suggest memcpy() i.e memory copy is used to copy a number of bytes i.e a block of memory from one location to another location.
Syntax of memcpy():
void * memcpy(void *to, const void *from, size_t numBytes);
Pro
ADO.NET Entity Framework is based upon Object/Relational Mapping (ORM) framework that facilitate developers to work with relational database. It enable developers to deal with data as objects and properties. Using the Entity Framework, developers wri
Hello Guys!!!
I am working on an endless running 3d game project using 3ds Max. I have 2 characters. one of them is a small kid character and another one is a security guard.Both have separate files containing their animations.
I have created a k
Light is combination of different colors. If we use fiber optics , the carrier signals are being multiplexed into the optical fiber by different kind of wavelengths.
This is an analog multiplexing technique and is done conceptually i
Hi,
There are a lot situation when we keep confidential data into our database. When matter of confidentiality comes, encryption comes first in mind. Today, in this article I will try to explain a beautiful technique to do so. This technique does no
There are two kind of for loops in PHP, one is for() loop & other is foreach().
The for() loop has three sections: init, termination & increment.
Syntax:
for (initialization; Condition Check ;increment) {
code to be executed;
}
First
This blog will let you download files from ftp using curl. Ftp url is given below. From this url we need to download this file filename.gz
ftp://ftp.example.se/filename.gz
Following is the working example:
$curl = curl_init();
$file = fopen("fil
I was having issues for updating stock quantity items of product in Magento. I was loading the product then setting the stock quantity and saving the product. But that does not work for me. Finally it was resolved, in order to update the stock quanti
