일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- Django-allauth
- FastAPI
- Django
- tkinter Radio 동적버튼
- numpy
- graphene-django
- for loop
- check_password
- GraphQL
- allauth
- python
- array
- flask
- SQL
- Today
- Total
목록분류 전체보기 (196)
객
graphql 대하여 인터넷에서 찾아면 잘 정리되어 있는 블로그나 웹사이트들이 많이 있으므로 참고 하시길.... 나름대로 공부한것을 정리 할 뿐입니다. 1. graphql 쿼리 질의 방법. 2. graphql 리턴된 결과. 3. Foreign key 에 대한 조인방법 환경 : 윈도우즈10 , Mariad 10.X, python 3.X Util : Graphene-django, venv(가상서버) eduapp/models.py class elocal(models.Model) : lid = models.IntegerField(primary_key=True, unique=True) # 번호 llocal = models.CharField(max_length=20, db_column='llocal') # 지역명 ..
일반 SQL문에 WHERE절에 대한 DJANGO ORM 표현방법 ─────────────────────────────────────────── 조회 조건 설명 ─────────────┬───────────────────────────── __contains │ 지정한 문자열을 포함하는 데이터 조회 │ Post.objects.filter(title__contains=’test’) ─────────────┼───────────────────────────── __icontains │ 지정한 문자열의 대소문자 구분없이 포함하는 데이터 조회 │ Post.objects.filter(title__icontains=’this’) ─────────────┼───────────────────────────── __lt ..
Configure the DEFAULT_AUTO_FIELD setting or the BlogConfig.default_auto_field attribute to point to a subclass of AutoField, e.g. 'django.db.models.BigAutoField'. => models.py에 id 명시적으로 기록해서 수정하였다. (id = models.BigAutoField(primary_key=True) 추가함.) 이러한 오류는 장고 3.1 버전에서 3.2 버전으로 업데이트하면서 생긴 메시지 인듯함. -----------------------------------------------------------------------------------------------------..
환경: java 1.8 , postgresql 9.x , thymeleaf , angularjs , windows 10 IndexController.java package org.example.Controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; @Controller public class IndexController { @RequestMapping(value="/" , method=Re..
1.오류 내용 - 'automatic updates download' has encountered a problem. an err occurred while colletcing items to be installed (출처 : http://stackoverflow.com/questions/25824902/spring-tool-suite-3-6-1-wont-update ) Steps I took to fix this : 1.Close STS 2. Delete folder cache on sts-3.6.0.RELEASE\p2\org.eclipse.equinox.p2.repository 3. Run STS 4. Select Window -> Preferences 5. Expand Install/Update a..