1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
|
/**************************************************
*
*
**************************************************
* This code was created by Peter Harvey @ CodeByDesign.
* Released under GPL 18.FEB.99
*
* Contributions from...
* -----------------------------------------------
* Peter Harvey - pharvey@codebydesign.com
**************************************************/
#include "classTable.h"
#include "table.xpm"
#ifdef QT_V4LAYOUT
classTable::classTable( Q3ListView *pParent, classCanvas *pCanvas, SQLHDBC hDbc, char *pszName, char *pszType, char *pszDescription )
#else
classTable::classTable( QListView *pParent, classCanvas *pCanvas, SQLHDBC hDbc, char *pszName, char *pszType, char *pszDescription )
#endif
: classNode( pParent, pCanvas )
{
Init( hDbc, pszName, pszType, pszDescription );
}
#ifdef QT_V4LAYOUT
classTable::classTable( Q3ListViewItem *pParent, classCanvas *pCanvas, SQLHENV hDbc, char *pszName, char *pszType, char *pszDescription )
#else
classTable::classTable( QListViewItem *pParent, classCanvas *pCanvas, SQLHENV hDbc, char *pszName, char *pszType, char *pszDescription )
#endif
: classNode( pParent, pCanvas )
{
Init( hDbc, pszName, pszType, pszDescription );
}
#ifdef QT_V4LAYOUT
classTable::classTable( Q3ListViewItem *pParent, Q3ListViewItem *pAfter, classCanvas *pCanvas, SQLHENV hDbc, char *pszName, char *pszType, char *pszDescription )
#else
classTable::classTable( QListViewItem *pParent, QListViewItem *pAfter, classCanvas *pCanvas, SQLHENV hDbc, char *pszName, char *pszType, char *pszDescription )
#endif
: classNode( pParent, pAfter, pCanvas )
{
Init( hDbc, pszName, pszType, pszDescription );
}
classTable::~classTable()
{
Fini();
}
void classTable::Init( SQLHDBC hDbc, char *pszName, char *pszType, char *pszDescription )
{
this->hDbc = hDbc;
this->qsName = pszName;
setText( 0, qsName );
setText( 1, pszType );
setText( 2, pszDescription );
sortChildItems( 1, FALSE );
listColumns.setAutoDelete( TRUE );
pPrimaryKeys = 0;
pIndexs = 0;
pSpecialColumns = 0;
pBrowse = 0;
this->setPixmap( 0, QPixmap( table_xpm ) );
}
void classTable::Fini()
{
listColumns.clear();
if ( pPrimaryKeys ) delete pPrimaryKeys;
if ( pIndexs ) delete pIndexs;
if ( pSpecialColumns ) delete pSpecialColumns;
if ( pBrowse ) delete pBrowse;
pPrimaryKeys = 0;
pIndexs = 0;
pSpecialColumns = 0;
pBrowse = 0;
}
void classTable::setOpen( bool bOpen )
{
#ifdef QT_V4LAYOUT
Q3ListViewItem::setOpen( bOpen );
#else
QListViewItem::setOpen( bOpen );
#endif
listView()->setSelected( listView()->selectedItem(), false );
if ( bOpen )
{
LoadColumns();
pPrimaryKeys = new classPrimaryKeys( this, pCanvas, hDbc, (char *)qsName.data() );
pIndexs = new classIndexs( this, pCanvas, hDbc, (char *)qsName.data() );
pSpecialColumns = new classSpecialColumns( this, pCanvas, hDbc, (char *)qsName.data() );
// listView()->setSelected( listView()->selectedItem(), false );
// setSelected( true );
}
else
{
Fini();
}
}
void classTable::setup()
{
setExpandable( TRUE );
#ifdef QT_V4LAYOUT
Q3ListViewItem::setup();
#else
QListViewItem::setup();
#endif
}
void classTable::LoadColumns()
{
SQLHSTMT hstmt;
SQLRETURN nReturn = -1;
SQLCHAR szTableName[101] = "";
SQLCHAR szColumnName[101] = "";
SQLCHAR szColumnType[101] = "";
SQLCHAR szDescription[301] = "";
QString qsError;
classColumn *pColumn = NULL;
// CREATE A STATEMENT
nReturn = SQLAllocStmt( hDbc, &hstmt );
if ( nReturn != SQL_SUCCESS )
{
QMessageBox::warning( pCanvas, "Data Manager", "Failed to SQLAllocStmt" );
return;
}
// EXECUTE OUR SQL/CALL
#ifdef QT_V4LAYOUT
strcpy( (char *)szTableName, qsName.ascii() );
#else
strcpy( (char *)szTableName, qsName.data() );
#endif
if ( SQL_SUCCESS != (nReturn=SQLColumns( hstmt, 0, 0, 0, 0, szTableName, SQL_NTS, 0, 0 )) )
{
QMessageBox::warning( pCanvas, "Data Manager", "Failed to SQLColumns" );
return;
}
// GET RESULTS
nReturn = SQLFetch( hstmt );
while ( nReturn == SQL_SUCCESS || nReturn == SQL_SUCCESS_WITH_INFO )
{
szDescription[0] = '\0';
nReturn = SQLGetData( hstmt, SQLColumns_COLUMN_NAME, SQL_C_CHAR, &szColumnName[0], sizeof(szColumnName), 0 );
if ( nReturn != SQL_SUCCESS )
strcpy( (char *)szColumnName, "Unknown" );
nReturn = SQLGetData( hstmt, SQLColumns_TYPE_NAME, SQL_C_CHAR, &szColumnType[0], sizeof(szColumnType), 0 );
listColumns.append( pColumn = new classColumn( this, pColumn, pCanvas, hDbc, (char *)szColumnName, (char*)szColumnType, (char*)szDescription ) );
nReturn = SQLFetch( hstmt );
}
// FREE STATEMENT
nReturn = SQLFreeStmt( hstmt, SQL_DROP );
if ( nReturn != SQL_SUCCESS )
QMessageBox::warning( pCanvas, "Data Manager", "Failed to SQLFreeStmt" );
}
#ifdef QT_V4LAYOUT
void classTable::selectionChanged( Q3ListViewItem *p )
#else
void classTable::selectionChanged( QListViewItem *p )
#endif
{
classColumn *pColumn;
for ( pColumn = listColumns.first(); pColumn != 0; pColumn = listColumns.next() )
pColumn->selectionChanged( p );
if ( p == this )
{
if ( !pBrowse )
pBrowse = new classBrowseFrame( hDbc, qsName, pCanvas );
pBrowse->show();
}
else
{
if ( pBrowse )
pBrowse->hide();
}
}
|