Is it at all possible to nest tables within each other in sqlite using PDO?
Am i able to create table "thisExtra" inside table "example" inside row "this" at collumn "y"?
If it is possible, how would i go about doing so?
Would there be any hard-hitting performance implications?
The reason i ask this is because im used to accessing data from xml files – where i can put whatever i want wherever i want (within reason of course)
Thanks in advance!
No. A table is not a valid datatype for a field in SQLite. You will need to create a relation to another table.
As a side note, complex XML documents do not lend themselves to being stored in a relational database piece-wise. You should consider trying something different.