You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
508 B
17 lines
508 B
13 years ago
|
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 ) );
|
||
|
}
|
||
|
}
|
||
|
|