You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Blaze uses table URI like 'dialect+driver://username:password@host:port/database::table'
so passing table as parameter is not necessary, as it is contained inside (table) URI
but It may be difficult to mimic this API without breaking eggs (con should be first parameter and table should be second with a default None value)
Kind regards
The text was updated successfully, but these errors were encountered:
Hello,
This enhancement is quite similar to #10654
to_sql
method should accept database URI as con parameterSo we could do
instead of :
Might apply to :
Blaze uses table URI like
'dialect+driver://username:password@host:port/database::table'
so passing table as parameter is not necessary, as it is contained inside (table) URI
but It may be difficult to mimic this API without breaking eggs (
con
should be first parameter andtable
should be second with a defaultNone
value)Kind regards
The text was updated successfully, but these errors were encountered: