This video shows simple steps to store the image files in your local SQLite database. For storing the Images in the database, unlike simple text or numbers, it uses BLOB field. It first converts the image file (or image) into bitmap. Then it converts the bitmap into bytes by compressing…
Tag: database
How to create stored procedure in MS SQL database server and run (call) it from your Android App?
This video shows the complete end to end steps to create a simple stored procedure in MS SQL server and call the same from the Android App. In the first part of the video it shows how to create a simple stored procedure using MS SQL Server Management Studio (SSMS)….
How to log call data such as number, name, duration, type(incoming or outgoing) in your Android App?
This video shows a very simple and easy way to create a call logging Android App. In this App, it uses a very simple layout and a button to trigger call logging. However, a developer can use this concept to integrate in their much more advance App development. In the…