Mars Lan 03e3d49445
feat(ingest): add example crawler for MS SQL (#1803)
Also fix the incorrect assumption on column comments & add sample docker-compose file
2020-08-12 08:51:39 -07:00

8 lines
207 B
Python

from common import run
# See https://github.com/m32/sqlalchemy-tds for more details
URL = '' # e.g. mssql+pytds://username:password@hostname:port
OPTIONS = {}
PLATFORM = 'mssql'
run(URL, OPTIONS, PLATFORM)