blob: c41fa174fbbb9aed43848372cc2d031e39f8d259 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
void BookForm::editClicked()
{
EditBookForm *dialog = new EditBookForm( this, "Edit Book Form", TRUE );
dialog->exec();
delete dialog;
}
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 ) );
}
}
|