Hello all,
I need some help on understanding the data file format and the database schema for my URLyBird 1.3.2 SCJD assignment.
I have very limited
Java programming language experience and have never worked with a data file. I have spend days reading/searching through the posts on the forum on the same topic but haven't been able to understand anything properly. Can anyone throw some light in this regard or suggest some reading material for a beginner to understand it. I already have Andrew Monkhouse's book.
I am adding the data format for reference. Please delete it if its not allowed.
The format of data in the database file is as follows:
Start of file
4 byte numeric, magic cookie value identifies this as a data file
4 byte numeric, offset to start of record zero
2 byte numeric, number of fields in each record
Schema description section.
Repeated for each field in a record:
2 byte numeric, length in bytes of field name
n bytes (defined by previous entry), field name
2 byte numeric, field length in bytes
end of repeating block
Data section. (offset into file equal to "offset to start of record zero" value)
Repeat to end of file:
2 byte flag. 00 implies valid record, 0x8000 implies deleted record
Record containing fields in order specified in schema section, no separators between fields, each field fixed length at maximum specified in schema information
End of file
All numeric values are stored in the header information use the formats of the DataInputStream and DataOutputStream classes. All text values, and all fields (which are text only), contain only 8 bit characters, null terminated if less than the maximum length for the field. The character encoding is 8 bit US ASCII.
Any help will be highly appreciated as I am stuck and desperately want to move ahead.
Thanks a lot,
Bably