
Search In


Hi Friends,
Debugging precompiled assemblies into some meaningful and understandable code is not an easy task without proper tools. Visual Studio ships with a tool named "IL Disassembler" and it does the task for taking a look at the struc
To restore database in PostgreSQL in ubuntu follow these step in terminal
1- sudo su - postgres
2- psql
3- psql -d abc1 < /home/sachin/pqr.sql
abc1 = is dbname from where I am restoring backup
pqr = backup file which will restore data
Frontend and Backend developer are two terms that have subtle but very clear distinction yet these are used interchangeably in common references. Frontend and backend both indicate their meanings in their terms - frontend is what comes to front where
Hi Friends,
Before knowing about "How to use Automapper" we should know what mapping is and then we'll see how to make it "automatic". So I am taking here an ASP.NET MVC example to make things easier and understandable.
By n
The hummingbird, outsmarting the panda, the penguin and you
The new google algorithm does justice to its nomenclature, its fast in its processing and furious with its accuracy. Humminbird is the freshest Google algorithm, which assimilates the bes
In the digital age that we find ourselves, technology is an ever-changing commodity. As new innovations pave the way to more automation, businesses are expanding at lightning fast speeds. To ensure that your business can keep up with its competitors,
Data protection now is one of the most important jobs of any organization. In the cyber world now there are hackers crawling everywhere looking to infiltrate the system and hacking sensitive data from people. Data security is now one of the most prim
Inserting data using JDatabase:
JDatabaseQuery class includes methods such as insert(), columns() and values() to insert data.
For example:
// Get a db connection.
$db = JFactory::getDbo();
// Create a new query object.
$query = $db->getQuery(
Sometimes we need to filter records based on some conditions, for that we use the AND & OR operators in MySQL.
AND operator - We use AND operator if we require both conditions in a query means the AND operator displays a record only if both the
Data in MongoDB contains a versatile schema. Documents that are in a same collection don't need to have an equivalent set of fields or structure, and common fields in an exceedingly collection's documents could hold differing kinds of data.
