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
|
/**************************************************
*
*
**************************************************
* This code was created by Peter Harvey @ CodeByDesign.
* Released under GPL 18.FEB.99
*
* Contributions from...
* -----------------------------------------------
* Peter Harvey - pharvey@codebydesign.com
**************************************************/
#include "classIndexs.h"
#include "keysilver2.xpm"
classIndexs::classIndexs( QListView *pParent, classCanvas *pCanvas, SQLHDBC hDbc, char *pszTable )
: classNode( pParent, pCanvas )
{
Init( hDbc, pszTable );
}
classIndexs::classIndexs( QListViewItem *pParent, classCanvas *pCanvas, SQLHENV hDbc, char *pszTable )
: classNode( pParent, pCanvas )
{
Init( hDbc, pszTable );
}
classIndexs::classIndexs( QListViewItem *pParent, QListViewItem *pAfter, classCanvas *pCanvas, SQLHENV hDbc, char *pszTable )
: classNode( pParent, pAfter, pCanvas )
{
Init( hDbc, pszTable );
}
classIndexs::~classIndexs()
{
listIndexs.clear();
}
void classIndexs::Init( SQLHDBC hDbc, char *pszTable )
{
this->hDbc = hDbc;
this->qsTable = pszTable;
setText( 0, "Indexs" );
setText( 1, "" );
setText( 2, "" );
listIndexs.setAutoDelete( TRUE );
this->setPixmap( 0, QPixmap( keysilver2_xpm ) );
}
void classIndexs::setOpen( bool o )
{
if ( o && !childCount() )
{
LoadIndexs();
}
QListViewItem::setOpen( o );
}
void classIndexs::setup()
{
setExpandable( TRUE );
QListViewItem::setup();
}
void classIndexs::LoadIndexs()
{
SQLHSTMT hstmt;
SQLRETURN nReturn = -1;
SQLCHAR szTableName[101] = "";
SQLCHAR szIndexName[101] = "";
SQLCHAR szPrevIndexName[101] = "";
int bUnique = 0;
SQLCHAR szDesc[101] = "";
QString qsError;
SQLLEN nIndicator = 0;
// CREATE A STATEMENT
nReturn = SQLAllocStmt( hDbc, &hstmt );
if ( nReturn != SQL_SUCCESS )
{
QMessageBox::warning( pCanvas, "Data Manager", "Failed to SQLAllocStmt" );
return;
}
// EXECUTE OUR SQL/CALL
strcpy( (char *)szTableName, qsTable.data() );
if ( SQL_SUCCESS != (nReturn=SQLStatistics( hstmt, 0, 0, 0, 0, szTableName, SQL_NTS, 0, 0 )) )
{
QMessageBox::warning( pCanvas, "Data Manager", "Failed to SQLStatistics" );
return;
}
// GET RESULTS
nReturn = SQLFetch( hstmt );
while ( nReturn == SQL_SUCCESS || nReturn == SQL_SUCCESS_WITH_INFO )
{
nReturn = SQLGetData( hstmt, 4, SQL_C_LONG, &bUnique, sizeof(bUnique), &nIndicator );
if ( nReturn != SQL_SUCCESS || nIndicator == SQL_NULL_DATA || !bUnique )
strcpy( (char *)szDesc, "" );
else
strcpy( (char *)szDesc, "UNIQUE" );
nReturn = SQLGetData( hstmt, 6, SQL_C_CHAR, &szIndexName[0], sizeof(szIndexName), &nIndicator );
if ( nReturn != SQL_SUCCESS || nIndicator == SQL_NULL_DATA )
strcpy( (char *)szIndexName, "Unknown" );
if ( strcmp( (const char*)szIndexName, (const char*)szPrevIndexName ) != 0 )
{
listIndexs.append( new classIndex( this, pCanvas, hDbc, (char *)szTableName, (char *)szIndexName, (char *)szDesc ) );
strcpy( (char*)szPrevIndexName, (char*)szIndexName );
}
nReturn = SQLFetch( hstmt );
}
// FREE STATEMENT
nReturn = SQLFreeStmt( hstmt, SQL_DROP );
if ( nReturn != SQL_SUCCESS )
QMessageBox::warning( pCanvas, "Data Manager", "Failed to SQLFreeStmt" );
}
void classIndexs::selectionChanged( QListViewItem *p )
{
classIndex *pIndex;
for ( pIndex = listIndexs.first(); pIndex != 0; pIndex = listIndexs.next() )
pIndex->selectionChanged( p );
if ( p == this )
{
}
}
|