我有表格数据(标题,数据行/列)。出于表示目的,可以假定它为csv格式。
我是Flatbuffers的新手,所以想知道在Flatbuffers中表示表格数据的最佳方法。
答案 0 :(得分:1)
类似这样的东西:
table Row {
col1:int; // These can each be their own data type.
col2:string;
..
// Fixed number of columns.
}
table Root {
rows:[Row]; // vector of rows, variable length.
}
root_type Root;
请注意,在这种情况下FlatBuffers对table
的使用与数据库表有很大不同。