Ok, I am trying out the PEAR DB to see if I want to use it for my whole site. In my site, I have quite a few M:N M:1 relationships, in those cases, I first insert one query, and then get that ID (from an auto_increment key field) and use it in the next query to establish the relationship.
Now... in PEAR DB .. the nextID is emulated by creating a sequence table...thats ok, I guess.. but say, I delete the last record in a table, then insert a new one....the nextID from PEAR DB is going to be off, because it doesn't know I deleted a record?
See what I mean? any way around this?
Thanks