![]() |
vrpRouting
0.3
|
#include <stddef.h>
Go to the source code of this file.
Typedefs | |
typedef struct Time_multipliers_t | Time_multipliers_t |
Functions | |
void | get_timeMultipliers (char *sql, Time_multipliers_t **row, size_t *total_rows) |
Get the time multipliers using interval. More... | |
void | get_timeMultipliers_raw (char *sql, Time_multipliers_t **row, size_t *total_rows) |
Get the time multipliers using bigint. More... | |
typedef struct Time_multipliers_t Time_multipliers_t |
Definition at line 35 of file time_multipliers_input.h.
void get_timeMultipliers | ( | char * | sql, |
Time_multipliers_t ** | rows, | ||
size_t * | total_rows | ||
) |
Get the time multipliers using interval.
[in] | sql | query that has the following columns: start_time, multiplier |
[out] | rows | C Container that holds all the multipliers rows |
[out] | total_rows | Total rows recieved |
Definition at line 149 of file time_multipliers_input.c.
References ANY_NUMERICAL, Column_info_t::colNumber, Column_info_t::eType, get_timeMultipliersGeneral(), Column_info_t::name, Column_info_t::strict, TIMESTAMP, and Column_info_t::type.
Referenced by process().
void get_timeMultipliers_raw | ( | char * | sql, |
Time_multipliers_t ** | rows, | ||
size_t * | total_rows | ||
) |
Get the time multipliers using bigint.
[in] | sql | query that has the following columns: start_time, multiplier |
[out] | rows | C Container that holds all the multipliers |
[out] | total_rows | Total rows recieved |
Definition at line 175 of file time_multipliers_input.c.
References ANY_INTEGER, ANY_NUMERICAL, Column_info_t::colNumber, Column_info_t::eType, get_timeMultipliersGeneral(), Column_info_t::name, Column_info_t::strict, and Column_info_t::type.
Referenced by process().