summaryrefslogtreecommitdiffstats
path: root/tools/designer/examples/book/book4/book.ui.h
blob: 730cafe1f84b28dd000141712aa08b7e895d12b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
void BookForm::newCurrentAuthor( TQSqlRecord * author )
{
    BookDataTable->setFilter( "authorid=" + author->value( "id" ).toString() );  
    BookDataTable->refresh();
}

void BookForm::primeInsertAuthor( TQSqlRecord * buffer )
{
    TQSqlQuery query; 
    query.exec( "UPDATE sequence SET sequence = sequence + 1 WHERE tablename='author';" ); 
    query.exec( "SELECT sequence FROM sequence WHERE tablename='author';" ); 
    if ( query.next() ) { 
	buffer->setValue( "id", query.value( 0 ) ); 
    } 
}