Changeset 904
- Timestamp:
- 02/15/07 23:32:17 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
nepenthes/trunk/modules/sqlhandler-postgres/sqlhandler-postgres.cpp
r657 r904 146 146 m_PGUser = user; 147 147 m_PGPass = passwd; 148 m_PGOptions = options; 148 149 149 150 m_Callback = cb; … … 761 762 "' password = '" + m_PGPass +"'"; 762 763 764 if (m_PGOptions.size() > 0) 765 ConnectString += m_PGOptions; 766 767 763 768 if (m_PGConnection != NULL) 764 769 PQfinish(m_PGConnection); nepenthes/trunk/modules/sqlhandler-postgres/sqlhandler-postgres.hpp
r657 r904 142 142 string m_PGUser; 143 143 string m_PGPass; 144 string m_PGOptions; 144 145 145 146 };
