Bde.DBTables.NativeCompareStrBuf

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

function NativeCompareStrBuf(Locale: TLocale; const S1, S2: PAnsiChar; Len: Integer): Integer;

C++

extern DELPHI_PACKAGE int __fastcall NativeCompareStrBuf(void * Locale, const char * S1, const char * S2, int Len);

プロパティ

種類 可視性 ソース ユニット
function public
Bde.DBTables.pas
Bde.DBTables.hpp
Bde.DBTables Bde.DBTables

説明

ヌルで終わる文字列を比較します。比較操作はデータベースのロケールによって制御され,大文字と小文字は区別されます。

NativeCompareStrBuf は,S1 と S2 を Len で示される長さだけ比較します(大文字と小文字は区別されます)。Len が 0 の場合は,NativeCompareStrBuf は文字列全体を比較の対象とします。比較操作は,Locale で示されるデータベースのロケールによって制御されます。戻り値は以下のとおりです。



ブレーク条件 戻り値

S1 > S2

> 0

S1 < S2

< 0

S1 = S2

= 0



関連項目