/* ***************************************************************************** Copyright 2000 by Erica Andrews (cylikon@hotmail.com). All rights reserved. ./ButchWhipAppeal/ ./IcedPinky/ NO portion of this software may be used in ANY way by anyone other than myself without my express written consent. If it is downloaded for testing, it must be deleted from your system within 24 hours. Any other use constitutes piracy and fraudulent misuse of this software, punishable in a court of law. Copyright 2000 by Erica Andrews. All rights reserved. ***************************************************************************** */ module CorbaSearchEng { // creating an exception to handle errors that may occur in the doQuery method, such as // problems with the database, connection refused messages, etc. exception QueryError {string query_error;}; interface CorbaSearch { void setSearchword(in string searchword); string doQuery() raises (QueryError); long rowcount(); long columncount(); }; };