sqlflow
sqlflow copied to clipboard
Use RFC1738 for MySQL data source URL.
RFC1738 is a standard protocol for URL. For example: mysql://root:[email protected]:3306/dbname. This schema can be used by some popular package such as sqlalchemy directly.
The current MySQL data source URL in SQLFlow is [username[:password]@][protocol[(address)]]/dbname[?param1=value1&...¶mN=valueN].
I think it would be better to use the standard protocol from RFC1738 instead.