sql_ins_doc_spell = """
begin
insert into doc.spell_correct (unknown_word, default_word ) values (:1 , :2);
exception
when dup_val_on_index then
null;
end;
"""
spell_correct = []
spell_correct.append(('jick', 'jack'))
#spell_correct.append(('ramana', 'ramona'))
with connection.cursor() as cursor:
cursor.executemany(sql_ins_doc_spell, spell_correct)
connection.commit()
```</div>