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
Currently, the conversion from Julia Types to SQL types is just facilitated by a dictionary between types.
While a solution other than hardcoding the type conversion would be preferable (maybe a more popular library that already maintains this map?), taking advantage of the Julia multiple dispatch system will make it a more flexible hardcoding.
The text was updated successfully, but these errors were encountered:
That would be an indication that we should make an sql_type(::Type{PGSQLConverter}, t::T) or sql_type(::Type{SQLiteConverter}, t::T) function so that multiple backends can be added later.
Currently, the conversion from Julia Types to SQL types is just facilitated by a dictionary between types.
While a solution other than hardcoding the type conversion would be preferable (maybe a more popular library that already maintains this map?), taking advantage of the Julia multiple dispatch system will make it a more flexible hardcoding.
The text was updated successfully, but these errors were encountered: