Difference Between MySQL and ORACLE

Here you will get to know about difference between mysql and oracle database. Both MySQL and Oracle are popular relational database management software developed by Oracle Corporation. MySQL: Its name is combination of words “My” and “SQL”, where “My” is name of daughter of co-founder Michael Widenius. And SQL full form is Structured Query Language. …

Difference Between MySQL and ORACLE Read More »

How to Protect Your Small Business from a Hacker Attack

Data breaches and compromised websites frequently used to spread malware can be risky for your business; including small businesses. In fact, small or medium-sized businesses are likely to suffer more consequences of cyber-attacks than large enterprises. Large enterprises have the benefit of huge financial reliance as well as organizational resources to combat any attacks. Image …

How to Protect Your Small Business from a Hacker Attack Read More »

Django Admin Interface

Here you will learn about working with django admin interface.  Prerequiests: It is necessary to learn about models first before working with Django admin panel. You can learn about models here. What is admin.py File in Django? We’ve created an app and a model in previous articles. But we haven’t stored anything yet to our database. …

Django Admin Interface Read More »

Django Models

In this tutorial, we’re going to learn about models in django. Models are connected to our database. We can also say that a model contains the fields and behaviors of the data that we want to store into database. Normally each model is connected to a single table of our database. To understand models and …

Django Models Read More »