How can I manually inser recurring events into database

Hi,

I want to manually insert the recurring event into my database, I’m using overridden method for inserting, like
@Override
public void beforeProcessing(DataAction action)
{
if (status.equals(“inserted”))
{
((DBDataWrapper)connector.sql).query(SQL);
action.success();
super.beforeProcessing(action);
}
}

How can i insert recurring events into the database ?
when I’m inserting the master event into the database it will auto manically insert the child events using “event_pid” or I need to insert the child events into the database according to the rec_type ?
Please give me a solution.

Regards,
Jobin K joseph

You need to create only one record for recurring events.
Child records are necessary only if you have recurring events with exceptions ( some instances are deleted or their time changed )

docs.dhtmlx.com/doku.php?id=dhtm … ntegration

Thanks for the information.