Curl Global Community
RecordSet DE 複数の主キー - Printable Version

+- Curl Global Community (https://communities.curl.com)
+-- Forum: Discussions (https://communities.curl.com/forumdisplay.php?fid=1)
+--- Forum: General Curl questions (https://communities.curl.com/forumdisplay.php?fid=2)
+--- Thread: RecordSet DE 複数の主キー (/showthread.php?tid=206)



RecordSet DE 複数の主キー - nasuB - 08-12-2011

Curlの投稿、はじめました。

RecordSetでDBのテーブルみたいに複数の主キーってできないのですか??
1つのキーはindex-type = RecordFieldIndexType.uniqueでできそうなのですが・・・。

Code:
{RecordSet
  {RecordFields
    {RecordField "id", index-type = RecordFieldIndexType.unique},
    {RecordField "name"}
  }
}

せっかくRecordFieldsというクラスがあるのなら、できてもいいと思うのですが・・。。。

Code:
{RecordSet
  {RecordFields
    {RecordField "id"},
    {RecordField "name"},
    private-keys = {{FastArray-of String}, "id", "name"}
  }
}

-B


RE: RecordSet DE 複数の主キー - yosuga - 08-16-2011

標準APIとしては用意されてないと思います。作ればできる気はします。。。


RE: RecordSet DE 複数の主キー - nasuB - 08-16-2011

ありがとうございます。

残念な限りです。。。

追加されることを熱望し続けます!


- B