프로그래밍 언어/Delphi

[Reference] TDataSet.IsEmpty

얗마 2016. 12. 3. 23:41

Data.DB.TDataSet.IsEmpty

Delphi

function IsEmpty: Boolean; inline;

C++

bool __fastcall IsEmpty(void);

Properties

TypeVisibilitySourceUnitParent
functionpublic
Data.DB.pas
Data.DB.hpp
Data.DBTDataSet

Description

Indicates whether / the dataset contains no records.

Call IsEmpty / to determine if a dataset has records. 

IsEmpty / returns true / if the dataset does not contain any records. 

Otherwise / it returns false.


데이터 세트에 레코드가 포함되어 있는지를 나타냅니다.

IsEmpty 메서드를 호출하면 데이터 세트에 레코드가 들어 있는지 알아냅니다. 

IsEmpty 는 데이터 세트에 레코드가 들어 있지 않은 경우 true를 반환합니다. 

그렇지 않으면 false를 반환합니다.


indicate 
미국·영국 [|ɪndɪkeɪt]

1. (사실임・존재함을) 나타내다   2. (조짐・가능성을) 나타내다

whether 
미국·영국 [|weðə(r)]

1. …인지 (아닌지・(아니면) ~인지)   2. …이든 (아니든・(아니면) ~이든)

determine 
미국식 [dɪ|t3:rmɪn]

1. 알아내다, 밝히다   2. (무엇의 방식・유형을) 결정하다   3. (공식적으로) 확정하다

otherwise 
미국식 [|ʌðərwaɪz]

1. (만약) 그렇지 않으면   2. 그 외에는   3. (…와는) 다르게, 달리


출처: http://docwiki.embarcadero.com/Libraries/XE2/en/Data.DB.TDataSet.IsEmpty