Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- FAST TEXT SEARCH for Clipper v.2.0 - <b>individual error code listing</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
   Individual Error Code Listing

   -1     CREATEFAIL     File creation error     
   System was unable to create the file specified. Check that you are 
   not trying to write over a protected file and that there is sufficient 
   space on disk for the file.    

   -2     MEMERR         Memory allocation error        
   System was unable to allocate the memory requested during    
   CftsCrea() or CftsOpen(). Try again with a smaller value for    
   "buffsize."    

   -3     NULLPTR        Function called with NULL pointer        
   You should never receive this error. If you do, please record all 
   related information and contact Index Applications.     

   -4     BADSEEK        Illegal    
   Seek There was an error while seeking into the file CFTS index 
   file. A seek error indicates a serious malfunction in your program. 

   -5     BADREAD        Read error 
   A CFTS function could not the index file. Make sure the file was 
   opened correctly. 

   -6     BADWRITE       Write error 
   A CFTS function (CftsAdd() or CftsReplac()) could not write to the 
   index. Make sure the index was opened for reading and writing. 

   -7     RECBOUND       Record number out of bounds    
   The record value passed to CftsReplac(), CftsDelete(),
   CftsIfDel(), or CftsUndel() is out of range. Either the value
   is less than 1 or greater than the total number of records in the
   index file.       
   Note: If the record pointer is set to point past the last record in 
   the .DBF file (by using a SKIP command to skip past the last record), 
   Clipper's RECNO() returns LASTREC() + 1. This value will result in a 
   -7 (RECBOUND) error if it is used as the <expN> parameter to 
   CftsReplac(). 

   -8     ISDELETED      Attempt to delete already deleted record 
   A call was made to CftsDelete() when the record has already been 
   deleted. Before attempting to delete an index record use CftsIfdel() 
   to determine if the record can be deleted. 

   -9     NOTDELETED     Attempt to undelete non-deleted record 
   A call was made to CftsUndel() when the record was not deleted. 
   Before attempting to undelete an index record use CftsIfdel() to 
   determine if the record is presently deleted. 

   -10    OPENERR        Unable to open CFTS file    
   Open failure. System was unable to open the file specified by 
   <expC>. Insure that the file does exist and it is not write protected 
   or already opened in a mode that conflicts with the open mode used by 
   your application. 

   -11    INTERR         Internal Error 
   You should never receive this error. If you do, please record all 
   related information and contact Index Applications. 

   -13    NORECS         CftsSet called with empty CFTS file 
   The index file specified does not contain any records. A search of it 
   would be useless. 

   -16    BADPARMS       Illegal number or type of parameters
   An invalid parameter has been passed to a CFTS function. The most 
   common cause of a -16 error has been an incorrect OPEN MODE (expN2) 
   parameter to CftsOpen(). With version 2, CftsOpen() will accept 0 or 
   .F. (READ-WRITE + SHARED), 1 or .T. (READ-WRITE + EXCLUSIVE), 2 
   (READ-ONLY + SHARED) or  3 (READ-ONLY + EXCLUSIVE). 

   -17    NOMOREHANDLES  Ran out of CFTS handles 
   CFTS handles 0 thru 63 have all been used. Consider a redesign of 
   the system. 

   -18    BADHANDLE      Invalid handle 
   Be sure the CFTS index was opened properly; check to see that the 
   application has not changed the value of the variable representing the 
   CFTS handle. 

   -19    BADIHANDLE     Invalid internal handle 
   You should not receive this error. If you do, please record all 
   related information and contact Index Applications. 

   -20    LOCKFAILED     Unable to lock file 
   A CFTS write operation could not lock the index header or an index 
   record prior to updating or adding a record. Either the record or 
   header is locked by another process; retry the operation. 

   -21    NOMORELOCKS    Lock table exhausted 
   The CFTS internal lock table is full. This error should not occur 
   during normal use of the library. You should never receive this error. 
   If you do, please record all related information and contact Index 
   Applications. 

   -22    CANNOTUNLOCK   Unable to unlock file 
   A CFTS function has attempted to unlock a region of the index file 
   that was not previously locked. You should never receive this error. 
   If you do, please record all related information and contact Index 
   Applications. 

   -23    BADCOMMIT      Unable to flush buffer to disk 
   A CFTS function failed while attempting to flush internal buffers 
   to disk. You should never receive this error. If you do, please record 
   all related information and contact Index Applications.


Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson