hi all,
is there any api command to delete data from custom type.
Thanks
Raju
Hi,
Can you please be more specific what do you meant by delete "data" from custom type ?
If you want to delete object(s) of your custom type, you can use following DQL also:
DELETE custom_type OBJECTS WHERE <condition>
Or if you know the object you want to delete, i.e if r_object_id is known you can also use following API command:
destroy,c,<r_object_id>
-regards,
Tejraj
Hi Tejraj,
Thanks for repaly. i have records in custom type just i want remove the records in type.
Hello Raju,
you can remove all objects of custom type using following DQL:
DELETE <custom_type> OBJECTS;
or specific by specifying WHERE clause in query like:
DELETE <custom_type> OBJECTS WHERE <condition>;
-Regards,