Ejemplo n.º 1
0
def crear(table, cond, data):
    print("insert into {} ({}) values ({})".format(table, cond, data), True)

    return do("insert into {} ({}) values ({})".format(table, cond, data),
              True)
Ejemplo n.º 2
0
def ver(col, table, cond):
    return do("select {} from {} where {}".format(col, table, cond), False)
Ejemplo n.º 3
0
def eliminar(table, cond):
    return do("delete from {} where {}".format(table, cond), True)
Ejemplo n.º 4
0
def direct(statement):
    return do(statement, True)
Ejemplo n.º 5
0
def modificar(table, original1, new1, original2, new2):
    return do(
        "update {} set {} = {} where {} = {}".format(table, original1, new1,
                                                     original2, new2), True)