golang同时连接2个不同类型的数据库

I need to connect mysql and oracle at same time for a database related application. From the document I learned that in go the database drivers are initialized in "init()" function. So I want to know if I import 2 different database drivers, does the later driver will override the former one?

There's no problem importing both because the drivers use different names. The driver name is the first argument to sql.Open.

If they should happen to use the same name, then the driver registration function panics.