次の方法で共有


SetFullTextIndexWithOptions Method

この機能は、将来のバージョンの Microsoft SQL Server では削除される予定です。新規の開発作業ではこの機能を使用しないようにし、現在この機能を使用しているアプリケーションは修正することを検討してください。

The SetFullTextIndexWithOptions method creates or removes a full-text index on the current column.

構文

object
.SetFullTextIndexWithOptions( 
Index , 
[ LanguageID ] ,
[ ColumnType ] )

Parts

  • object
    Expression that evaluates to an object in the Applies To list.
  • Index
    TRUE or FALSE.
  • LanguageID
    Optional long integer that specifies the language identifier for the image column. Default: -1.
  • ColumnType
    Optional string that specifies the data type of the column. Default is NULL.

Prototype (C/C++)

HRESULT SetFullTextIndexWithOptions(
BOOL Index, 
long LanguageID,
SQLDMO_LPCSTR ColumnType);

解説

In addition to referencing string data types in full-text indexes, Microsoft SQL Server supports the creation of full-text indexes on image columns.

Set the Index parameter to TRUE to create a full-text index on the current column. Set the Index parameter to FALSE to remove an index on the column.

Prior to setting the LanguageID parameter, an application can call the EnumFullTextLanguages method of the Registry2 object to retrieve a list of available languages. If the LanguageID parameter is omitted, the default language is used. If Index is set to FALSE, LanguageID is ignored.

The ColumnType parameter is required when creating a full-text index on an image column. Prior to setting SetFullTextIndexWithOptions, use the FullTextImageColumnType property to determine the underlying data type of the image column.

ms140578.note(ja-jp,SQL.90).gifメモ :
If an application calls SetFullTextIndexWithOptions on an instance of SQL Server version 7.0, the constant, SQLDMO_E_SQL80ONLY, and the message "This property or method requires Microsoft SQL Server 2000 or later" are returned.

Applies To:

Column2 Object

参照

関連項目

EnumFullTextLanguages Method
FullTextColumnLanguageID Property
FullTextImageColumnType Property

ヘルプおよび情報

SQL Server 2005 の参考資料の入手