Home
last modified time | relevance | path

Searched refs:sqliteStatement (Results 1 – 7 of 7) sorted by relevance

/dports/graphics/qgis-ltr/qgis-3.16.16/src/providers/spatialite/
H A Dqgsspatialitefeatureiterator.cpp231 sqliteStatement = nullptr; in QgsSpatiaLiteFeatureIterator()
250 if ( !sqliteStatement ) in fetchFeature()
257 if ( !getFeature( sqliteStatement, feature ) ) in fetchFeature()
259 sqlite3_finalize( sqliteStatement ); in fetchFeature()
260 sqliteStatement = nullptr; in fetchFeature()
284 if ( sqlite3_reset( sqliteStatement ) == SQLITE_OK ) in rewind()
309 if ( sqliteStatement ) in close()
311 sqlite3_finalize( sqliteStatement ); in close()
312 sqliteStatement = nullptr; in close()
377 …if ( sqlite3_prepare_v2( mSqliteHandle, sql.toUtf8().constData(), -1, &sqliteStatement, nullptr ) … in prepareStatement()
H A Dqgsspatialitefeatureiterator.h95 sqlite3_stmt *sqliteStatement = nullptr; variable
/dports/graphics/qgis/qgis-3.22.3/src/providers/spatialite/
H A Dqgsspatialitefeatureiterator.cpp234 sqliteStatement = nullptr; in QgsSpatiaLiteFeatureIterator()
253 if ( !sqliteStatement ) in fetchFeature()
263 if ( !getFeature( sqliteStatement, feature ) ) in fetchFeature()
265 sqlite3_finalize( sqliteStatement ); in fetchFeature()
266 sqliteStatement = nullptr; in fetchFeature()
298 if ( sqlite3_reset( sqliteStatement ) == SQLITE_OK ) in rewind()
323 if ( sqliteStatement ) in close()
325 sqlite3_finalize( sqliteStatement ); in close()
326 sqliteStatement = nullptr; in close()
391 …if ( sqlite3_prepare_v2( mSqliteHandle, sql.toUtf8().constData(), -1, &sqliteStatement, nullptr ) … in prepareStatement()
H A Dqgsspatialitefeatureiterator.h96 sqlite3_stmt *sqliteStatement = nullptr; variable
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/libs/sqlite/
H A Dsqlitebasestatement.cpp312 sqlite3_stmt *sqliteStatement = nullptr; in prepare() local
316 &sqliteStatement, in prepare()
318 m_compiledStatement.reset(sqliteStatement); in prepare()
/dports/graphics/qgis-ltr/qgis-3.16.16/src/core/expression/
H A Dqgsexpressionfunction.cpp1843 sqlite3_statement_unique_ptr sqliteStatement; in fcnSqliteFetchAndIncrement() local
1889 sqliteStatement = sqliteDb.prepare( currentValSql, result ); in fcnSqliteFetchAndIncrement()
1894 if ( sqliteStatement.step() == SQLITE_ROW ) in fcnSqliteFetchAndIncrement()
1896 nextId = sqliteStatement.columnAsInt64( 0 ) + 1; in fcnSqliteFetchAndIncrement()
/dports/graphics/qgis/qgis-3.22.3/src/core/expression/
H A Dqgsexpressionfunction.cpp1907 sqlite3_statement_unique_ptr sqliteStatement; in fcnSqliteFetchAndIncrement() local
1953 sqliteStatement = sqliteDb.prepare( currentValSql, result ); in fcnSqliteFetchAndIncrement()
1958 if ( sqliteStatement.step() == SQLITE_ROW ) in fcnSqliteFetchAndIncrement()
1960 nextId = sqliteStatement.columnAsInt64( 0 ) + 1; in fcnSqliteFetchAndIncrement()