sqlflow icon indicating copy to clipboard operation
sqlflow copied to clipboard

Use RFC1738 for MySQL data source URL.

Open brightcoder01 opened this issue 5 years ago • 0 comments

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&...&paramN=valueN].

I think it would be better to use the standard protocol from RFC1738 instead.

brightcoder01 avatar Sep 07 '20 08:09 brightcoder01