Different Types of Database Users

According to tasks performed on the database by different users, we can classify database users in 5 categories as given below: Database Administrator Naive Users Application Programmers Sophisticated Users Specialized Users Let’s discuss each one by one in detail. 1. Database Administrator (Super Users) A single person or a team of members can be a …

Different Types of Database Users Read More »

Types of DBMS Interfaces

Interface means “The way of communication performed in between a user and a Database management system” like query passing. This interface is further divided into four categories on the basis of technology used. Menu based Form based Graphical user interface (GUI) based Natural language based Let’s discuss them one by one in detail. Menu Based …

Types of DBMS Interfaces Read More »

Solve “local variable referenced before assignment” Error in Python

While we are learning about functions, or using functions to write a program, we often encounter an error called: UnboundLocalError: local variable referenced before assignment. In this article, we will see what causes this error and how can we eliminate this type of error in our programs. Reasons for Error Case 1: Suppose we write …

Solve “local variable referenced before assignment” Error in Python Read More »