Posts by Ordnael • 31 points
3 posts
-
1
votes3
answers2829
viewsA: Accent error on Visual Studio output
Marcio’s solution worked here... Settings.json became like this: { "python.jediEnabled": false, "editor.minimap.enabled": false, "breadcrumbs.enabled": false, "files.autoSave": "afterDelay",…
-
1
votes1
answer405
viewsA: Python - Retrieve BD information by column name
I found out... very simple... Only put . (dot) and column name. print(row.RESPONSAVEL_TELEFONICA_RA, row.SEGMENTO, row.BENEFICIO_FUTURO)
-
0
votes1
answer405
viewsQ: Python - Retrieve BD information by column name
Dear, How to retrieve database information by column names and not by indexes? cursor.execute('SELECT * FROM [AutomacaoCampanhasDashboard].[dbo].[TBL_GCCP2]') row = cursor.fetchall() nome =…