I need to loop through some queries of a Microsoft Access database (mdb). Is there a possibility to do so with Python? (I am not familiar with Python.)
I was thinking of creating a list with the query names and then loop through it.
So far I have this:
# Import system modules (ArcGIS, Excel, Microsoft Access)
import arcpy
from arcpy import env
import csv
import pyodbc
# Set workspace
arcpy.env.workspace = r"\\mars\Skript\Connection to ERDE.XYZ.XX.sde"
MDB = r"\\mars\Konzept\auswertung_gdm.mdb"