Functions | |
| alp_status_t | alp_calendar_dml_events_from_vCal_buffer (AlpDmlH dmlH, char *dataBuf, bool fromExgMgr, GList **eventIDs) __attribute((deprecated)) |
| Deprecated. Use alp_calendar_dml_read_from_vCal_buffer. | |
| alp_status_t | alp_calendar_dml_events_from_vCal_file (AlpDmlH dmlH, int theDataFd, bool fromExgMgr, GList **eventIDs) __attribute((deprecated)) |
| Deprecated. Use alp_calendar_dml_read_from_vCal_file instead. | |
| alp_status_t | alp_calendar_dml_events_to_vCal_buffer (AlpDmlH dmlH, uint8_t **dataBuf, uint32_t *size, bool toExgMgr, GList *eventIDs) __attribute((deprecated)) |
| Deprecated. Use alp_calendar_dml_write_to_vCal_buffer instead. | |
| alp_status_t | alp_calendar_dml_events_to_vCal_file (AlpDmlH dmlH, int theDataFd, bool toExgMgr, GList *eventIDs) __attribute((deprecated)) |
| Deprecated. Use alp_calendar_dml_write_to_vCal_file instead. | |
| alp_status_t | alp_calendar_dml_get_item (AlpDmlH dmlH, AlpLuid itemLuid, AlpDmlStatementH *stmtH) |
| This API call can be used to fetch details of a given event specified by its LUID A call to alp_calendar_dml_statement_next needs to be made before fetching any values for the desired row. using the statement handle returned. | |
| alp_status_t | alp_calendar_dml_read_from_vCal_buffer (AlpDmlH dmlH, const uint8_t *dataBuf, uint32_t size, bool fromExgMgr, bool forModify, GList **eventLuids) |
| Creates one or more calendar events from the contents of a buffer containing vCals. | |
| alp_status_t | alp_calendar_dml_read_from_vCal_file (AlpDmlH dmlH, int theDataFd, bool fromExgMgr, bool forModify, GList **eventLuids) |
| Creates one or more calendar events from the contents of a file containing vCals. | |
| alp_status_t | alp_calendar_dml_search_begin (AlpDmlH dmlH, AlpDmlStatementH *stmtH, const char *search_string, int32_t *numResults) |
| This API call can be used to search events in calendar database. | |
| alp_status_t | alp_calendar_dml_search_statement_begin (AlpDmlH dml, AlpDmlStatementH *stmtH, const char *search_string, int32_t *numResults) __attribute((deprecated)) |
| Deprecated. Call alp_calendar_dml_search_begin instead. | |
| alp_status_t | alp_calendar_dml_statement_begin (AlpDmlH dmlH, AlpLuid eventLuid, AlpDmlStatementH *stmtH, uint32_t categoryLUID, bool unfiled, DateTimeType startTime, DateTimeType endTime, const char *orderBy, int32_t *numResults) |
| This API call can be used to fetch events in calendar database filtered based on three criteria 1. Filter based on category 2. Filter based on event starttime and event endtime 3. Filter based on event luid. | |
| alp_status_t | alp_calendar_dml_statement_end (AlpDmlH dmlH, AlpDmlStatementH stmt) __attribute((deprecated)) |
| Temporarily deprecated. Use alp_calendar_dml_statement_end_new. | |
| alp_status_t | alp_calendar_dml_statement_end_new (AlpDmlStatementH stmt) |
| This API call is used to end a query that was begun in call to alp_calendar_dml_statement_begin. | |
| alp_status_t | alp_calendar_dml_statement_get_blob (AlpDmlStatementH stmtH, AlpCalendarDmlColumnType column, bool copy, void **value, int32_t *size) |
| This API call is used to fetch the blob value for a given field. | |
| alp_status_t | alp_calendar_dml_statement_get_int32 (AlpDmlStatementH stmtH, AlpCalendarDmlColumnType column, uint32_t *value) |
| This API call is used to fetch the integer value for a given field. | |
| alp_status_t | alp_calendar_dml_statement_get_string (AlpDmlStatementH stmtH, AlpCalendarDmlColumnType column, bool copy, char **value) |
| This API call is used to fetch the text value for a given field. | |
| alp_status_t | alp_calendar_dml_statement_next (AlpDmlH dmlH, AlpDmlStatementH *stmtH) __attribute((deprecated)) |
| Temporarily deprecated, use alp_calendar_dml_statement_next_new. | |
| alp_status_t | alp_calendar_dml_statement_next_new (AlpDmlStatementH *stmtH) |
| This API call is used to fetch the next event from the query results( started by a alp_calendar_dml_statement_begin call). | |
| alp_status_t | alp_calendar_dml_write_to_vCal_buffer (AlpDmlH dmlH, uint8_t **dataBuf, uint32_t *size, bool toExgMgr, const GList *eventLuids) |
| Writes one or more calendar vCals to an allocated buffer. | |
| alp_status_t | alp_calendar_dml_write_to_vCal_file (AlpDmlH dmlH, int theDataFd, bool toExgMgr, const GList *eventLuids) |
| Writes one or more vCals to the given file. | |
|
||||||||||||||||||||
|
Deprecated. Use alp_calendar_dml_read_from_vCal_buffer.
|
|
||||||||||||||||||||
|
Deprecated. Use alp_calendar_dml_read_from_vCal_file instead.
|
|
||||||||||||||||||||||||
|
Deprecated. Use alp_calendar_dml_write_to_vCal_buffer instead.
|
|
||||||||||||||||||||
|
Deprecated. Use alp_calendar_dml_write_to_vCal_file instead.
|
|
||||||||||||||||
|
This API call can be used to fetch details of a given event specified by its LUID A call to alp_calendar_dml_statement_next needs to be made before fetching any values for the desired row. using the statement handle returned.
|
|
||||||||||||||||||||||||||||
|
Creates one or more calendar events from the contents of a buffer containing vCals. If a given vCal contains the GUID of an existing event, and we are called to handle an exchange manager request, than that data will replace what is already in the database. Otherwise this function creates new events for each vCal.
|
|
||||||||||||||||||||||||
|
Creates one or more calendar events from the contents of a file containing vCals. If a given vCal contains the GUID of an existing event, and we are called to handle an exchange manager request, than that data will replace what is already in the database. Otherwise this function creates new events for each vCal.
|
|
||||||||||||||||||||
|
This API call can be used to search events in calendar database.
|
|
||||||||||||||||||||
|
Deprecated. Call alp_calendar_dml_search_begin instead.
|
|
||||||||||||||||||||||||||||||||||||||||
|
This API call can be used to fetch events in calendar database filtered based on three criteria 1. Filter based on category 2. Filter based on event starttime and event endtime 3. Filter based on event luid.
|
|
||||||||||||
|
Temporarily deprecated. Use alp_calendar_dml_statement_end_new. This function is temporarily deprecated for Alp 2.4 in favor of alp_calendar_dml_statement_end_new(), which has the correct function signature but a suboptimal name. For Alp 2.5, this new function will be deprecated and the old function's signature changed. Please either migrate to the new function, or wait for Alp 2.5 to change all calls of this function to the new signature. |
|
|
This API call is used to end a query that was begun in call to alp_calendar_dml_statement_begin.
|
|
||||||||||||||||||||||||
|
This API call is used to fetch the blob value for a given field.
|
|
||||||||||||||||
|
This API call is used to fetch the integer value for a given field.
|
|
||||||||||||||||||||
|
This API call is used to fetch the text value for a given field.
|
|
||||||||||||
|
Temporarily deprecated, use alp_calendar_dml_statement_next_new. This function is temporarily deprecated for Alp 2.4 in favor of alp_calendar_dml_statement_next_new(), which has the correct function signature but a suboptimal name. For Alp 2.5, this new function will be deprecated and the old function's signature changed. Please either migrate to the new function, or wait for Alp 2.5 to change all calls of this function to the new signature. |
|
|
This API call is used to fetch the next event from the query results( started by a alp_calendar_dml_statement_begin call).
|
|
||||||||||||||||||||||||
|
Writes one or more calendar vCals to an allocated buffer. If called to handle an exchange manager request we'll add the GUID to the vCal.
|
|
||||||||||||||||||||
|
Writes one or more vCals to the given file. If called to handle an exchange manager request we'll add the GUID to the vCal.
|
Copyright © 1999-2008 ACCESS CO., LTD. All rights reserved.