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
-record(test, { f1::integer(), f2::integer(), f3::integer() }).
% create a new table using test recordcozo:create_table(Db, #test{}).
% create a list of data to insertData= [
#test{ f1=1, f2=2, f3=3 },
#test{ f1=2, f2=3, f3=4 }
].
% insert all datacozo:put(Db, Data).
Types conversion from Erlang to Cozoscript (first)
The current structure is simple, we generate a query from a string and receive the result as json. A more Erlangish way should be used.
The text was updated successfully, but these errors were encountered: