Q&A

  • 인테베이스에서 Secondary Index 파일 생성좀 알려주세요.
안녕하세요.



인테베이스를 배우는중인데요



인테베이스에서 Table 생성시

Secindary Index을 만들고자 합니다....

알려주세요.



Table1.FieldDefs.Add('code', ftString, 10, true); //코드

Table1.FieldDefs.Add('name', ftString, 10, true); // 성명

Table1.FieldDefs.Add('hno', ftString, 10, true); //회원번호



Table1.IndexDefs.Add('CodeIndex', 'code', TIndexOptions() << ixPrimary );



Table1.IndexDefs.Add('HnoIndex','hno' ,TIndexOptions()<


Table1->CreateTable();



에서 Primary Key인 CodeIndex는 생성을 하는데,



회원번호('hno')로 추가적으로 Secindary Key을 만들고자 합니다.



아시는분 부탁합니다......



0  COMMENTS