SQLGetCount

 

SQLSelect로 실행한 후 읽어온 레코드의 개수를 얻어온다.

 

int @SQLGetCount(int id);

 

함수인자

int id : SQLConnect로 연결한 연결 번호

 

반환 값

읽어온 레코드의 개수가 반환된다.

 

예제

@SQLSelect(id, "ValueTable", "BindListValue", "", "");

count = @SQLGetCount(id);

 

문장설명 : ValueTable의 테이블에 있는 레코드의 전체갯수를 읽어온다.

 

관련항목

SQLConnect()

SQLCreateTable()

SQLDelete()

SQLDisconnect()

SQLExecute()

SQLFirst()

SQLInsert()

SQLLast()

SQLNext()

SQLPrepare()

SQLPrev()

SQLQueryCount()

SQLSelect()

SQLSetPos()

SQLUpdate()

 

버전 정보

버전 8.5.0 부터 지원