
Search In
The Access Controls provide us the method which allows us to set access to classes , methods and other members in Ruby. They help us to bind the components to maintain the security of the methods throughout the project.
Ruby provid
This post will help you to send push notification to iPhone devices using server side scripting language called php.
Here are code to send push notification
/**
* Apple Push Notification Services (APNS)
*
* @param array data
In .NET while wroking with projects you need to write some line of code again and again which may contain crucial information like your mail settings your connection strings
Instead of writing that again and again you need to wrap it in a single fil
For fetching data from database in php, first we have to create a connection from database by using following code.
<?php
$servername = "localhost";
$username = "root";
$password = "pass";
$database = "demo"; //this will contain na
In OpenERP first create delivery address in delivery form and then we need to define a partner for the brand of the product and also dedicated_delivery_address stand for the case a new type of address. In stock form move all the delivery address to s
If you want to catch SQL constraints violations in OpenERP/Odoo controllers this tutorial will help you,
So, You can add an SQL constraint to Odoo model without facing any difficulty, to do this we have to use the _sql_constraints list. Odoo Fo
Encoding.GetString(Byte[]):
Encoding.GetString(Bytes[]) method is use to decode the specified byte of an array to string. This method needs a encoding class to make a encoding object. This encoding object can be a following two classes:
&nb
Delegate is a type which holds the method(s) reference in an object. It is also referred to as a type safe function pointer. Delegates concept will match with function pointer concept of c++ language.
We use delegate keyword when we need to create
Hi Friends
Whenever we register a user in our registration form we need to check for existence of current email/user name or any unique identification property. You certainly don't want two users to be registered with same email Ids. A
QueryTimeout Expired is the Error in the asp.net. Users usually get an exception in their application
“The timeout period elapsed prior to completion of the operation or the server is not responding”
When we work with the database which
