IsVariableLength Property
Microsoft SQL Server의 이후 버전에서는 이 기능이 제거됩니다. 새 개발 작업에서는 이 기능을 사용하지 말고, 현재 이 기능을 사용하는 응용 프로그램은 수정하십시오.
The IsVariableLength property specifies data length representation handling for a data type.
구문
object
.IsVariableLength
Parts
- object
An expression that evaluates to an object in the Applies To list
Data Type
Boolean
Modifiable
Read-only
Prototype (C/C++)
HRESULT GetIsVariableLength(LPBOOL pRetVal);
주의
If TRUE, the data type represents strings that vary in length, such as those defined as varchar(4).
If FALSE, the data type does not represent strings that vary in length, such as those defined as char(4).
Variability in string representation is easily visible in client software. For example, the string AK retrieved from a column defined as varchar(4) is returned to a client as two characters. If retrieved from a column defined as char(4), the string is padded using a space character so that four characters are returned.