Posts by Adriano • 1 point
3 posts
-
-1
votes0
answers27
viewsQ: Angular and Graphql
I have a problem with displaying the html component: Query graphql in service: document = gql` query unidadeMedida($id: ID!) { unidadeMedida(id: $id){ id unidadeMedida descricao } } `; Interface:…
-
0
votes2
answers43
viewsA: Django - DATABASES configuration
Standard Django: DATABASES = { 'default': { 'ENGINE': 'sql_server.pyodbc', 'HOST': 'xxx', 'NAME': 'xxx', 'USER': 'xxx', 'PASSWORD': 'xxx', 'PORT': 'xxx', 'OPTIONS': { 'driver': 'ODBC Driver 17 for…
-
0
votes2
answers43
viewsQ: Django - DATABASES configuration
DATABASES = { 'default': { 'ENGINE': 'sql_server.pyodbc', 'NAME': 'name', The string of ODBC only use the attribute DATABASE, but Django only executes with the attribute NAME. How can I resolve this…