Home
last modified time | relevance | path

Searched refs:qSingle (Results 1 – 4 of 4) sorted by relevance

/dports/biology/ugene/ugene-40.1/src/plugins/api_tests/src/core/format/sqlite_object_dbi/
H A DSQLiteObjectDbiUnitTests.cpp667 qSingle.bindDataId(1, msaId); in IMPLEMENT_TEST()
668 if (qSingle.step()) { in IMPLEMENT_TEST()
669 CHECK_EQUAL(1, qSingle.getInt64(0), "number of single steps"); in IMPLEMENT_TEST()
758 qSingle.bindDataId(1, msaId); in IMPLEMENT_TEST()
759 if (qSingle.step()) { in IMPLEMENT_TEST()
818 qSingle.bindDataId(1, msaId); in IMPLEMENT_TEST()
819 if (qSingle.step()) { in IMPLEMENT_TEST()
885 qSingle.bindDataId(1, msaId); in IMPLEMENT_TEST()
886 if (qSingle.step()) { in IMPLEMENT_TEST()
952 qSingle.bindDataId(1, msaId); in IMPLEMENT_TEST()
[all …]
/dports/biology/ugene/ugene-40.1/src/corelibs/U2Formats/src/sqlite_dbi/
H A DSQLiteModDbi.cpp223 …SQLiteWriteQuery qSingle("INSERT INTO SingleModStep(object, otype, oextra, version, modType, detai… in createModStep() local
226 qSingle.bindDataId(1, step.objectId); in createModStep()
227 qSingle.bindType(2, U2DbiUtils::toType(step.objectId)); in createModStep()
228 qSingle.bindBlob(3, U2DbiUtils::toDbExtra(step.objectId)); in createModStep()
229 qSingle.bindInt64(4, step.version); in createModStep()
230 qSingle.bindInt64(5, step.modType); in createModStep()
231 qSingle.bindBlob(6, step.details); in createModStep()
232 qSingle.bindInt64(7, modStepsByObject[masterObjId].multiModStepId); in createModStep()
234 step.id = qSingle.insert(); in createModStep()
/dports/biology/ugene/ugene-40.1/src/corelibs/U2Formats/src/mysql_dbi/
H A DMysqlModDbi.cpp232 U2SqlQuery qSingle(qSingleString, db, os); in createModStep() local
233 qSingle.bindDataId(":object", step.objectId); in createModStep()
234 qSingle.bindType(":otype", U2DbiUtils::toType(step.objectId)); in createModStep()
235 qSingle.bindBlob(":oextra", U2DbiUtils::toDbExtra(step.objectId)); in createModStep()
236 qSingle.bindInt64(":version", step.version); in createModStep()
237 qSingle.bindInt64(":modType", step.modType); in createModStep()
238 qSingle.bindBlob(":details", step.details); in createModStep()
239 qSingle.bindInt64(":multiStepId", modStepsByObject[masterObjId].multiModStepId); in createModStep()
240 step.id = qSingle.insert(); in createModStep()
/dports/biology/ugene/ugene-40.1/src/plugins/api_tests/src/core/format/sqlite_mod_dbi/
H A DModDbiSQLiteSpecificUnitTests.cpp88 SQLiteWriteQuery qSingle("DELETE FROM SingleModStep", sqliteDbi->getDbRef(), os); in cleanUpAllModSteps() local
92 qSingle.execute(); in cleanUpAllModSteps()
110 …SQLiteReadQuery qSingle("SELECT id, object, otype, oextra, version, modType, details, multiStepId … in getAllSteps() local
112 while (qSingle.step()) { in getAllSteps()
114 singleStep.id = qSingle.getInt64(0); in getAllSteps()
115 singleStep.objectId = qSingle.getDataIdExt(1); in getAllSteps()
116 singleStep.version = qSingle.getInt64(4); in getAllSteps()
117 singleStep.modType = qSingle.getInt64(5); in getAllSteps()
118 singleStep.details = qSingle.getBlob(6); in getAllSteps()
119 singleStep.multiStepId = qSingle.getInt64(7); in getAllSteps()