Where do variable length fields arise ?
Problem caused by a variable length
data field
Problem caused by a variable length
data field
Storage technique for records that contains a
variable length field
Example 1 on how to store variable length records
Name: 30 bytes
Gender (G): 4 bytes
Address: variable length string
birth date: 16 bytes
Example 1 on how to store variable length records
Note:
you must
unpack a
variable length record...
Example 2 on how to store variable length records
Name: variable length string
Gender (G): 4 bytes
Address: variable length string
birth date: 16 bytes
Example 2 on how to store variable length records
Same note:
you must
unpack a
variable length record...
❮
❯