Esempio n. 1
0
def call_insert_table():
    arbolAux = arbol
    arbolAux.bdUsar = heap[p - 3]
    tabla = insertTable.insertTable(heap[p - 2], None, heap[p - 1], heap[p],
                                    '', 0, 0)
    tabla.ejecutar(tablaGlobal, arbolAux)
Esempio n. 2
0
def p_instruccion_insert2(t):
    '''instruccion : INSERT INTO ID VALUES PARIZQ l_expresiones PARDER PUNTO_COMA

    '''
    t[0] = insertTable.insertTable(t[3], None, None, t[6], t.lineno, t.lexpos)
Esempio n. 3
0
def p_instruccion_insert(t):
    '''instruccion : INSERT INTO ID PARIZQ lista_id PARDER VALUES PARIZQ l_expresiones PARDER PUNTO_COMA
    '''
    t[0] = insertTable.insertTable(t[3], None, t[5], t[9], t.lexer.lineno,
                                   t.lexer.lexpos)