Django django.db.utils import OperationalError

2021. 3. 10. 22:06파이썬/Django

filter 결과가 없는 경우 발생

boxes.count()를 실행하면 예외 발생

    try :
        boxes.count()
        train.makeImage(boxes, 'special')    
    except OperationalError :
        print('테이터가 없습니다.')

'파이썬 > Django' 카테고리의 다른 글

Django filter Max 구하기  (0) 2021.03.27
Django get_or_create  (0) 2021.03.11
unsupported operand type(s) for -: 'NoneType' and 'NoneType'  (0) 2021.03.07
Django Admin form 데이터  (0) 2021.03.04
Django admin reverse  (0) 2021.03.03