
Search In
While retriving or inserting data into the database we use SqlClasses.
But we can also create dynamic data or dynamic table if we want.
For doing that we need to use the classes:
DataTable : Table where rows and column are stored.
In MVC everything is based on the concept of action contained in the controller and the view that is being generated for that action.
While performing deletion in the gridview you first need to make the model class that will access the detai
Implementing zip compression in .Net
ZipFile class is provided by .Net framework for zip compression. This class provides static methods for creation, extraction, and opening of zip archives. The namespace required for zip com
Hello Reader's if you are making the website in which you have to fetch and show the content data from an external file then in this blog you can see how to do it. In web technologies different technologies offers you many ways to do this but now
In every android application AndroidManifest.xml is the necessary part. Manifest file contains every essential information about your appliucation. It contains information about your package, activities, permissions, services, brodcast receiver and c
Hello Readers,
In this post we will learn how to download a file and stored it locally with Cordova Android/iOS apps.
First, we need to install cordova file transfer plugin via CLI :
$ cordova plugin add cordova-plugin-file-transfer
&nbs
hii,
We can insert mutliple value in an array using different method as per requirements.
Here is the list of method we can use to insert values in an array.
Array fill() Method :fill() method is used when we want to fills either all the e
Use DataBase Helper Class in your code, Which extends the base class SQLiteOpenHelper Class
Sample code
package com.searchoffers.android;
import java.util.ArrayList;
import java.util.List;
import android.content.ContentValues;
import android.c
In this article, you will learn about the SQLite database in Cordova for mobile application.
SQLite is open source database which can be used in phonegap application. It has features as in standard relational database (SQL syntax, prepared statements
Forgot password functionality we usually on the login page of many website.
It is used when we we forgot our password and want to recover it.
In this blog we are going to recover it by sending an email to the registered email with user account.
we
