
エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
ocaml-ormはオブジェクトをどのようにRDBに格納するのか?(その2) - Qiita
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
ocaml-ormはオブジェクトをどのようにRDBに格納するのか?(その2) - Qiita
type t = { foo: string; bar: int64; xyz: char; } and x = { first: t; second: t; third: int; } wit... type t = { foo: string; bar: int64; xyz: char; } and x = { first: t; second: t; third: int; } with orm ( unique: t<xyz>, t<bar>; index: x<first,second> ) let s1 = { foo="hello"; bar=100L; xyz='a' } let s2 = { foo="world"; bar=200L; xyz='z' } let x = { first=s1; second=s2; third=111 } sqlite> .tables __links__ __types__ t x sqlite> .schema CREATE TABLE __links__ (parent TEXT, field TEXT, child TEXT