I'm trying to write/change column remarks (ie comment, descriptor) to existing columns in an access database file (accdb).
After connecting to the database I can see the remarks with this (if it exists):
cur = connection.cursor()
columnInfo = cur.columns( table='tableName' ).fetchall()
# to see the remark for the first column, for example:
print( columnInfo[0].remarks )
I'm at a loss, however, on how to write my own remarks to a column through pyodbc (or through anything else, for that matter). I'm also curious to know where this metadata resides. Any help is appreciated.