Ejemplo n.º 1
0
def insert(connection, dictobj, commit=True, override_timestamp=True):
    ''' Insert a result into RAW table '''
    dictobj = __json_to_mapped_row(dictobj)
    _table_utils.do_insert_into(connection, INSERT_INTO, dictobj, TEMPLATE,
                                commit, override_timestamp)
Ejemplo n.º 2
0
def insert(connection, dictobj, commit=True, override_timestamp=True):
    ''' Insert a result dictionary into speedtest table '''
    _table_utils.do_insert_into(connection, INSERT_INTO, dictobj, TEMPLATE,
                                commit, override_timestamp)
Ejemplo n.º 3
0
def insert(connection, dictobj, commit=True, override_timestamp=True):
    """ Insert a result into bittorrent table """
    _table_utils.do_insert_into(connection, INSERT_INTO, dictobj, TEMPLATE, commit, override_timestamp)