Skip to main content

Posts

Using MySQL db with Django

 Django officially supports these databases: PostgreSQL, MariaDB, MySQL, Oracle, SQLite.
Recent posts

First Django Project

Django is a Python-based web framework that allows you to quickly create efficient web applications. It is also called batteries included framework because Django provides built-in features for everything including Django Admin Interface, default database – SQLlite3, etc.

LinkedList

A linked list is a linear data structure, in which the elements are not stored at contiguous memory locations. The elements in a linked list are linked using pointers. In simple words, a linked list consists of nodes where each node contains a data field and a reference(link) to the next node in the list.