Пример #1
0
        public int executeStatement()
        {
            int rc = Sqlite3.sqlite3_step(m_st);

            if (rc == Sqlite3.SQLITE_ROW && !m_bNoCopy)
            {
                m_resCopy = new CSqliteCopyResult(this);
                close();
            }

            return(rc);
        }
Пример #2
0
        public int executeStatement()
        {
            int rc = Sqlite3.sqlite3_step(m_st);

            if (rc == Sqlite3.SQLITE_ROW && !m_bNoCopy)
            {
                m_resCopy = new CSqliteCopyResult(this);
                close();
            }

            return rc;
        }