Answers for "django retrieve information from database"

1

display data from database in django

data = Students.objects.all()
stu = {
    "student_number": data
}
return render_to_response("login/profile.html", stu)

// in html file :
{% for student in student_number %}
    {{ student.f_name}}
    {{ student.l_name }}
    {{ student.student_number }}
    {{ student.dob }}
{% endfor %}
Posted by: Guest on April-25-2020
0

data don't retrieve from database view in django

#import library
from django.db import connection

#Create the cursor
cursor = connection.cursor()

#Write the SQL code
sql_string = 'SELECT * FROM myview'

#Execute the SQL
cursor.execute(sql_string)
result = cursor.fetchall()
Posted by: Guest on August-04-2021

Code answers related to "django retrieve information from database"

Python Answers by Framework

Browse Popular Code Answers by Language