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
{{ message }}
This repository has been archived by the owner on Nov 28, 2019. It is now read-only.
Are you talking about the SQL generation or the actual record in the database? We're not ready yet to insert stuff in the database, we're just working in the SQL generator.
Once we get there, we shall build an API that may look this:
type Person struct {
Id int
Name string
Age int
}
p := Person{Name:"Francisco", Age:"23"}
s := Session()
s.Insert(p)
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Should be able to generate SQL to insert a real record into the database. Example:
The text was updated successfully, but these errors were encountered: