Hi Skrol29,
I've been using TBS for a long time now and find it excellent. With the new 2.0 release, the inbuilt support for objects is great for me because I use a lot of objects.
I often use an object as a TBS data source and have to write the custom data functions outside of the object like this:
tbsdb_objectname_open();
tbsdb_objectname_fetch();
tbsdb_objectname_close();
|
Is there any way to use functions within the object instead such as:
$object->TBS_Open();
$object->TBS_Fetch();
$object->TBS_Close();
|
If the answer is no, could this be incorporated into a future version. This would be a very useful feature especially when you use inherited (extended) objects.
Thanks in advance.