home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / mfc / include / afxdb.rc < prev    next >
Text File  |  1998-06-16  |  4KB  |  106 lines

  1. // This is a part of the Microsoft Foundation Classes C++ library.
  2. // Copyright (C) 1992-1998 Microsoft Corporation
  3. // All rights reserved.
  4. //
  5. // This source code is only intended as a supplement to the
  6. // Microsoft Foundation Classes Reference and related
  7. // electronic documentation provided with the library.
  8. // See these sources for detailed information regarding the
  9. // Microsoft Foundation Classes product.
  10.  
  11. #ifndef __AFXDB_RC__
  12. #define __AFXDB_RC__
  13.  
  14. #ifndef __AFXRES_H__
  15.     #include <afxres.h>
  16. #endif
  17.  
  18. #ifdef APSTUDIO_INVOKED
  19. // This will prevent the VC++ Resource Editor user from saving this file
  20. 1 TEXTINCLUDE DISCARDABLE
  21. BEGIN
  22. "< Cannot change standard MFC resources! >\0"
  23. END
  24. #endif    // APSTUDIO_INVOKED
  25.  
  26. #ifndef _AFXDLL
  27.  
  28. /////////////////////////////////////////////////////////////////////////////
  29. // Database Resources
  30.  
  31. // Database strings
  32. STRINGTABLE DISCARDABLE
  33. BEGIN
  34.     AFX_IDP_SQL_CONNECT_FAIL
  35.         "Attempt to connect to datasource failed"
  36.     AFX_IDP_SQL_RECORDSET_FORWARD_ONLY
  37.         "Recordset supports forward movement only."
  38.     AFX_IDP_SQL_EMPTY_COLUMN_LIST
  39.         "Attempt to open a table failed - there were no columns to retrieve were specified."
  40.     AFX_IDP_SQL_FIELD_SCHEMA_MISMATCH
  41.         "Unexpected column data types were returned from query."
  42.     AFX_IDP_SQL_ILLEGAL_MODE "Attempt to Update or Delete failed."
  43.     AFX_IDP_SQL_MULTIPLE_ROWS_AFFECTED "Multiple rows were updated."
  44.     AFX_IDP_SQL_NO_CURRENT_RECORD "Operation failed, no current record."
  45.     AFX_IDP_SQL_NO_ROWS_AFFECTED
  46.         "No rows were affected by the update or delete operation."
  47.     AFX_IDP_SQL_RECORDSET_READONLY "Recordset is read-only"
  48.     AFX_IDP_SQL_SQL_NO_TOTAL
  49.         "ODBC driver doesn't support MFC LongBinary data model."
  50.     AFX_IDP_SQL_ODBC_LOAD_FAILED
  51.         "Attempt to load required component ODBC32.DLL failed."
  52.     AFX_IDP_SQL_DYNASET_NOT_SUPPORTED
  53.         "ODBC driver does not support dynasets."
  54.     AFX_IDP_SQL_SNAPSHOT_NOT_SUPPORTED
  55.         "ODBC static cursors required for snapshot support."
  56.     AFX_IDP_SQL_API_CONFORMANCE
  57.         "ODBC driver incompatible with MFC database classes (API_CONFORMANCE >= SQL_OAC_LEVEL1 required)."
  58.     AFX_IDP_SQL_SQL_CONFORMANCE
  59.         "ODBC driver incompatible with MFC database classes (SQL_CONFORMANCE >= SQL_OSC_MINIMUM required)."
  60.     AFX_IDP_SQL_NO_DATA_FOUND
  61.         "Attempt to scroll past end or before beginning of data."
  62.     AFX_IDP_SQL_ROW_UPDATE_NOT_SUPPORTED
  63.         "Dynasets not supported by ODBC driver."
  64.     AFX_IDP_SQL_ODBC_V2_REQUIRED
  65.         "ODBC Level 2 compliant driver required."
  66.     AFX_IDP_SQL_NO_POSITIONED_UPDATES
  67.         "Positioned updates not supported by ODBC driver."
  68.     AFX_IDP_SQL_LOCK_MODE_NOT_SUPPORTED
  69.         "Requested lock mode is not supported."
  70.     AFX_IDP_SQL_DATA_TRUNCATED
  71.         "Data truncated."
  72.     AFX_IDP_SQL_ROW_FETCH
  73.         "Error retrieving record."
  74.     AFX_IDP_SQL_INCORRECT_ODBC
  75.         "A required ODBC entry point was not found.  Make sure ODBC is installed correctly."
  76.     AFX_IDP_SQL_UPDATE_DELETE_FAILED
  77.         "Update or Delete failed."
  78.     AFX_IDP_SQL_DYNAMIC_CURSOR_NOT_SUPPORTED
  79.         "Dynamic cursors not supported by ODBC driver."
  80.     AFX_IDP_SQL_FIELD_NOT_FOUND
  81.         "Invalid field name or field index."
  82.     AFX_IDP_SQL_BOOKMARKS_NOT_SUPPORTED
  83.         "Bookmarks not supported for ODBC driver."
  84.     AFX_IDP_SQL_BOOKMARKS_NOT_ENABLED
  85.         "Bookmarks not enabled on recordset."
  86.     AFX_IDP_DAO_ENGINE_INITIALIZATION
  87.         "Unable to initialize DAO/Jet db engine."
  88.     AFX_IDP_DAO_DFX_BIND
  89.         "Bad DFX value parameter."
  90.     AFX_IDP_DAO_OBJECT_NOT_OPEN
  91.         "DAO TableDef or QueryDef not Open."
  92.     AFX_IDP_DAO_ROWTOOSHORT
  93.         "GetRows failed. Not enough memory allocated for row."
  94.     AFX_IDP_DAO_BADBINDINFO
  95.         "GetRows binding error. Probably caused by datatype mismatch."
  96.     AFX_IDP_DAO_COLUMNUNAVAILABLE
  97.         "GetRows failed. The requested column is not a member of this recordset."
  98.  
  99.     AFX_IDS_DELETED "<Deleted>"
  100. END
  101.  
  102. /////////////////////////////////////////////////////////////////////////////
  103.  
  104. #endif //!_AFXDLL
  105. #endif //__AFXDB_RC__
  106.