Data types in Django

admin Avatar

Django is a powerful and popular web framework that is designed to be fast, secure, and scalable. It has a variety of built-in data types that can be used to store and manipulate different types of data. In this post, we’ll take a look at the different data types available in Django and provide examples of how they can be used.

CharField:

CharField is used to store a string of characters. It has a max_length parameter that specifies the maximum number of characters allowed in the field. Here’s an example:

class Person(models.Model):

    name = models.CharField(max_length=50)

TextField:

TextField is used to store a large amount of text. It has no limit on the amount of text that can be stored in the field. Here’s an example:

class Article(models.Model):

    title = models.CharField(max_length=200)

    body = models.TextField()

IntegerField:

IntegerField is used to store integer values. It has optional parameters for specifying minimum and maximum values. Here’s an example:

class Employee(models.Model):

    age = models.IntegerField()

BooleanField:

BooleanField is used to store boolean values. It can be set to True or False. Here’s an example:

class User(models.Model):

    is_active = models.BooleanField(default=True)

DateField:

DateField is used to store dates. It has optional parameters for specifying default and null values. Here’s an example:

class Event(models.Model):

    date = models.DateField(default=datetime.date.today)

DateTimeField:

DateTimeField is used to store dates and times. It has optional parameters for specifying default and null values. Here’s an example:

Advertisements

class Post(models.Model):

    title = models.CharField(max_length=200)

    pub_date = models.DateTimeField(auto_now_add=True)

FloatField:

FloatField is used to store decimal numbers. It has optional parameters for specifying minimum and maximum values. Here’s an example:

class Product(models.Model):

    price = models.FloatField()

DecimalField:

DecimalField is used to store decimal numbers with a fixed number of digits. It has optional parameters for specifying the number of digits and decimal places. Here’s an example:

class Order(models.Model):

    total_amount = models.DecimalField(max_digits=8, decimal_places=2)

In conclusion, Django has a wide range of data types that can be used to store and manipulate different types of data. By using these data types, you can create powerful and dynamic web applications with ease.

Tagged in :

admin Avatar

More Articles & Posts