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
add MySql Support to Yao by writing an adapter similar to
for each field of each table we need the following struct
type FieldInfo struct {
Name string
Nullable string
Datatype string
KeyInfo string
}
that you can find in generate.go
have a look on how the postgres adapter is implemented
The text was updated successfully, but these errors were encountered:
add MySql Support to Yao by writing an adapter similar to
for each field of each table we need the following struct
type FieldInfo struct {
Name string
Nullable string
Datatype string
KeyInfo string
}
that you can find in generate.go
have a look on how the postgres adapter is implemented
The text was updated successfully, but these errors were encountered: