
Search In
There are certain applications in which we need to integrate the PayPal for enabling the user to pay certain amount to use further features of the app.
Before starting, download the PayPal_MPL.jar file from PayPal developer's website and copy same i
The purchases made by a user to get accessiblity of special features of an app such as add free app, confined levels or full game unlock, boosts etc and these feature can be acquired within a mobile app are known as In-App Purchases.
Hello Readers!
This blog is about how to use SQLite in Flex.
Before proceeding a brief introduction to SQLite.
SQLite is a relational database management system contained in a small C programming library,it is an embedded SQL database engine and a
If you want to check amounts in the partial reconcile table aren't signed or not then follow the following code .
amount = abs(line.debit - line.credit)
amount_residual_currency = abs(line.amount_currency) or 0.0
sign =
Hello,
It is very simple to delete an item or row from any parse table from the code.
First, we need to create the object of the table that points that particular row and then delete it.
I create an object using object id and then execute
Hello Friends,
When you are working with GIT sometimes face this kind of error "error: Unable to append to .git/logs/refs/heads/dev: Permission denied fatal: Cannot update the ref 'HEAD'.", while taking update from your bra
The automatic execution of stored programs when a specific event occurs are triggers. Triggers are database object binded to a table and are called implicitly. They find their usage while accessing and checking data before and after DDL and DML queri
A custom Directive helps us to control the rendering of the HTML inside an AngularJS application. It makes AngularJS responsive.
Here is a custom directive to check for password and confirm password validation:
angular.module('app')
.directi
Hello Friends,
If you are trying to take PULL request from server and facing this issue "error: cannot open .git/FETCH_HEAD: Permission denied". Please use the below command to fix this issue:
chmod a+rw .git/FETCH_HEAD
I hope your prob
JavaScript is one of the most popular language for front-end developers. While there are others languages too like CoffeeScript, TypeScript but nothing can beat JavaScript. Earlier JavaScript was widely used to front-end development but after the bir
