Android – Fragments
A Fragment is a piece of an activity which enable more modular activity design. It will not be wrong if we say, a fragment is a kind of sub-activity. Following are important points…
A Fragment is a piece of an activity which enable more modular activity design. It will not be wrong if we say, a fragment is a kind of sub-activity. Following are important points…
XML-RPC requests are a combination of XML content and HTTP headers. The XML content uses the data typing structure to pass parameters and contains additional information identifying which procedure is…
The XML-RPC specification defines six basic data types and two compound data types that represent combinations of types. Basic Data Types in XML-RPC TypeValueExamplesint or i432-bit integers between - 2,147,483,648…
Hazelcast is a distributed IMDG, i.e. in-memory data grid, which is used widely across industries by companies like Nissan, JPMorgan, Tmobile, to name a few. It offers various rich features…
A content provider component supplies data from one application to others on request. Such requests are handled by the methods of the ContentResolver class. A content provider can use different…
XML-RPC is the simplest XML-based protocol for exchanging information between computers across a network. In this tutorial, you will learn what is XML-RPC and why and how to use it.…
As seen before, working directly with object stacks can get confusing. Therefore, the ideal way is to use layers to determine how the objects are actually stacked upon each other.…
H2 is a JAVA database. We can interact with this database by using JDBC. In this chapter, we will see how to create a JDBC connection with the H2 database…
ROLLBACK is a command from the SQL grammar used to roll back the transaction to a Savepoint or to the previous transaction. By using this command, we can either roll…
SAVEPOINT is a command used to temporarily save the transaction. It is better to maintain savepoints in your transaction as it is helpful to roll back the transaction to the…