ADO AppendChunk 메서드


❮ 전체 필드 개체 ​​참조

AppendChunk 메서드는 긴 이진 또는 문자 데이터를 Parameter 또는 Field 개체에 추가하는 데 사용됩니다.

팁: 긴 값을 부분적으로 조작하려면 이 방법을 사용하십시오.

Object Description of the AppendChunk Method
Parameter

You can use the AppendChunk method for a Parameter object if the Attributes property is set to adFldLong.

First time you call the AppendChunk method on a Parameter object it overwrites any existing data. The next AppendChunk calls add data to existing parameter data.

Field

You can use the AppendChunk method for a Field object if the Attributes property is set to adFldLong.

First time you call the AppendChunk method on a Field object it overwrites any existing data. The next AppendChunk calls add data to existing data. If you append data to one field and then set or read the value of another field in the current record, ADO assumes that you are finished appending data to the first field. If you then call the AppendChunk method on the first field again, ADO will overwrite the existing data. Accessing fields in other Recordset objects that are not clones of the first Recordset object will not disrupt AppendChunk operations. There must be a current record when you call the AppendChunk method on a Field object.

Note: This method does not work on Field objects of a Record object.

통사론

objectname.AppendChunk data

Parameter Description
data The data to append

❮ 전체 필드 개체 ​​참조