Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
import dbi
import odbc
Con = odbc.odbc('DEMODATA')
Cursor = Con.cursor()
Cursor.execute("select id, name from class")
Results = Cursor.fetchall()
for Data in Results:
print str(Data[0]) + "." + Data[1]