alexbrainman / odbc

odbc driver written in go
BSD 3-Clause "New" or "Revised" License
352 stars 140 forks source link

Add SQLDataSources function #120

Closed mpcjanssen closed 6 years ago

mpcjanssen commented 6 years ago

Apologies for the renamed pkg path. I would love to find a good way to handle this which doesn't require all kinds of tricks on the development side.

alexbrainman commented 6 years ago

Apologies for the renamed pkg path.

You cannot rename pkg path, because this package users refer to this package as github.com/alexbrainman/odbc in their code. So Go compiler will not see your changes.

I would love to find a good way to handle this which doesn't require all kinds of tricks on the development side.

git provides info tools to overcome this problem. Maybe read https://splice.com/blog/contributing-open-source-git-repositories-go/ - it should help you to make your git copy work with original import paths. Let me know, if you still confused and need more help.

Alex