By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 3121
Collapse All | Expand All

(-)a/kexi/migration/pqxx/pqxxmigrate.cpp (+6 lines)
Lines 92-98 bool PqxxMigrate::drv_readTableSchema( Link Here
92
        for (uint i = 0; i < (uint)m_res->columns(); i++)
92
        for (uint i = 0; i < (uint)m_res->columns(); i++)
93
        {
93
        {
94
            TQString fldName(m_res->column_name(i));
94
            TQString fldName(m_res->column_name(i));
95
#if PQXX_VERSION_MAJOR >= 7
96
            KexiDB::Field::Type fldType = type(m_res->column_type(m_res->column_name(i)), fldName);
97
#else
95
            KexiDB::Field::Type fldType = type(m_res->column_type(i), fldName);
98
            KexiDB::Field::Type fldType = type(m_res->column_type(i), fldName);
99
#endif
96
            TQString fldID( KexiUtils::string2Identifier(fldName) );
100
            TQString fldID( KexiUtils::string2Identifier(fldName) );
97
            const pqxx::oid toid = tableOid(originalName);
101
            const pqxx::oid toid = tableOid(originalName);
98
            if (toid==0)
102
            if (toid==0)
Lines 249-255 bool PqxxMigrate::drv_disconnect() Link Here
249
{
253
{
250
    if (m_conn)
254
    if (m_conn)
251
    {
255
    {
256
#if PQXX_VERSION_MAJOR < 7
252
        m_conn->disconnect();
257
        m_conn->disconnect();
258
#endif
253
        delete m_conn;
259
        delete m_conn;
254
		m_conn = 0;
260
		m_conn = 0;
255
    }
261
    }

Return to bug 3121