58 |
|
public |
59 |
|
constructor Create(Transaction: TFBTransaction; RelationName, ColumnName: string |
60 |
|
); |
61 |
+ |
procedure SetCharSetID(aValue: integer); |
62 |
|
|
63 |
|
public |
64 |
|
{IBlobMetaData} |
383 |
|
FRelationName := RelationName; |
384 |
|
FColumnName := ColumnName; |
385 |
|
FSegmentSize := 80; |
386 |
+ |
FUnconfirmedCharacterSet := true; |
387 |
+ |
FCharSetID := 0; |
388 |
+ |
end; |
389 |
+ |
|
390 |
+ |
procedure TFBBlobMetaData.SetCharSetID(aValue: integer); |
391 |
+ |
begin |
392 |
+ |
FCharSetID := aValue; |
393 |
+ |
FUnconfirmedCharacterSet := false; |
394 |
|
end; |
395 |
|
|
396 |
|
function TFBBlobMetaData.GetSubType: integer; |