insert into table (txt) values ("Never say ""never"""); -- вставится: Never say "never"insert into table (txt) values ('Don''t cry'); -- вставится Don't cry
C++ (Qt)QString maintext = "Noch'. Ulica. Fonar'." QString sql = QString("INSERT INTO mtable (aText) Values(:v)");QSqlQuery query;query.prepare (sql) ;query.bindValue (":v", maintext) ;query.exec(sql);