if (!insertWords.prepare("Insert Into Words (word, guid, weight, source)"
+" Values(:word, :guid, :weight, :type )")) {
logger.log(logger.EXTREME, "Note SQL select prepare checkWords has failed.");
logger.log(logger.MEDIUM, insertWords.lastError());
}
insertWords.bindValue(":word", word);
insertWords.bindValue(":guid", guid);
insertWords.bindValue(":weight", weight);
insertWords.bindValue(":type", type);
if (!insertWords.exec()) {
String err = insertWords.lastError();