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
|
/**************************************************
*
*
**************************************************
* This code was created by Peter Harvey @ CodeByDesign.
* Released under GPL 18.FEB.99
*
* Contributions from...
* -----------------------------------------------
* Peter Harvey - pharvey@codebydesign.com
**************************************************/
#include "classTables.h"
#include "tables.xpm"
#ifdef QT_V4LAYOUT
classTables::classTables( Q3ListView *pParent, classCanvas *pCanvas, SQLHDBC hDbc )
#else
classTables::classTables( QListView *pParent, classCanvas *pCanvas, SQLHDBC hDbc )
#endif
: classNode( pParent, pCanvas )
{
Init( hDbc );
}
#ifdef QT_V4LAYOUT
classTables::classTables( Q3ListViewItem *pParent, classCanvas *pCanvas, SQLHENV hDbc )
#else
classTables::classTables( QListViewItem *pParent, classCanvas *pCanvas, SQLHENV hDbc )
#endif
: classNode( pParent, pCanvas )
{
Init( hDbc );
}
#ifdef QT_V4LAYOUT
classTables::classTables( Q3ListViewItem *pParent, Q3ListViewItem *pAfter, classCanvas *pCanvas, SQLHENV hDbc )
#else
classTables::classTables( QListViewItem *pParent, QListViewItem *pAfter, classCanvas *pCanvas, SQLHENV hDbc )
#endif
: classNode( pParent, pAfter, pCanvas )
{
Init( hDbc );
}
classTables::~classTables()
{
listTables.clear();
}
void classTables::Init( SQLHDBC hDbc )
{
this->hDbc = hDbc;
setText( 0, "Tables" );
setText( 1, "" );
setText( 2, "" );
listTables.setAutoDelete( TRUE );
this->setPixmap( 0, QPixmap( tables_xpm ) );
}
void classTables::setOpen( bool bOpen )
{
#ifdef QT_V4LAYOUT
Q3ListViewItem::setOpen( bOpen );
#else
QListViewItem::setOpen( bOpen );
#endif
listView()->setSelected( listView()->selectedItem(), false );
if ( bOpen )
{
LoadTables();
// setSelected( true );
}
else
listTables.clear();
}
void classTables::setup()
{
setExpandable( TRUE );
#ifdef QT_V4LAYOUT
Q3ListViewItem::setup();
#else
QListViewItem::setup();
#endif
}
void classTables::LoadTables()
{
SQLHSTMT hstmt;
SQLRETURN nReturn = -1;
SQLCHAR szTableName[101] = "";
SQLCHAR szTableType[101] = "";
SQLCHAR szTableRemarks[301] = "";
QString qsError;
SQLLEN nIndicatorName;
SQLLEN nIndicatorType;
SQLLEN nIndicatorRemarks;
classTable *pTable = 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
if ( SQL_SUCCESS != (nReturn=SQLTables( hstmt, 0, 0, 0, 0, 0, 0, 0, 0 )) )
{
QMessageBox::warning( pCanvas, "Data Manager", "Failed to SQLTables" );
return;
}
SQLBindCol( hstmt, SQLTables_TABLE_NAME, SQL_C_CHAR, szTableName, sizeof(szTableName), &nIndicatorName );
SQLBindCol( hstmt, SQLTables_TABLE_TYPE, SQL_C_CHAR, szTableType, sizeof(szTableType), &nIndicatorType );
SQLBindCol( hstmt, SQLTables_REMARKS, SQL_C_CHAR, szTableRemarks, sizeof(szTableRemarks), &nIndicatorRemarks );
// GET RESULTS
nReturn = SQLFetch( hstmt );
while ( nReturn == SQL_SUCCESS || nReturn == SQL_SUCCESS_WITH_INFO )
{
if ( nIndicatorName == SQL_NULL_DATA )
listTables.append( pTable = new classTable( this, pTable, pCanvas, hDbc, "Unknown" ) );
else
listTables.append( pTable = new classTable( this, pTable, pCanvas, hDbc, (char *)szTableName, (char*)szTableType, (char*)szTableRemarks ) );
szTableName[0] = '\0';
szTableType[0] = '\0';
szTableRemarks[0] = '\0';
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 classTables::selectionChanged( Q3ListViewItem *p )
#else
void classTables::selectionChanged( QListViewItem *p )
#endif
{
classTable *pTable;
for ( pTable = listTables.first(); pTable != 0; pTable = listTables.next() )
pTable->selectionChanged( p );
if ( p == this )
{
}
}
|