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.
75 lines
2.8 KiB
75 lines
2.8 KiB
// Microsoft Foundation Classes C++ library.
|
|
// Copyright (C) 1992-1993 Microsoft Corporation,
|
|
// All rights reserved.
|
|
|
|
// This source code is only intended as a supplement to the
|
|
// Microsoft Foundation Classes Reference and Microsoft
|
|
// QuickHelp and/or WinHelp documentation provided with the library.
|
|
// See these sources for detailed information regarding the
|
|
// Microsoft Foundation Classes product.
|
|
|
|
#ifndef __AFXDB_RC__
|
|
#define __AFXDB_RC__
|
|
|
|
#ifndef __AFXRES_H__
|
|
#include <afxres.h>
|
|
#endif
|
|
|
|
#ifdef APSTUDIO_INVOKED
|
|
// This resource will prevent the App Studio user from saving this file
|
|
1 TEXTINCLUDE DISCARDABLE
|
|
BEGIN
|
|
"Cannot change standard MFC resources.\0"
|
|
END
|
|
#endif // APSTUDIO_INVOKED
|
|
|
|
#ifndef _AFXDLL
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// Database Resources
|
|
|
|
// Database strings
|
|
STRINGTABLE DISCARDABLE
|
|
BEGIN
|
|
AFX_IDP_SQL_CONNECT_FAIL "Attempt to connect to datasource failed"
|
|
AFX_IDP_SQL_RECORDSET_FORWARD_ONLY
|
|
"Recordset supports forward movement only."
|
|
AFX_IDP_SQL_EMPTY_COLUMN_LIST
|
|
"Attempt to open a table failed - there were no columns to retrieve were specified."
|
|
AFX_IDP_SQL_FIELD_SCHEMA_MISMATCH
|
|
"Unexpected column data types were returned from query."
|
|
AFX_IDP_SQL_ILLEGAL_MODE "Attempt to Update or Delete failed."
|
|
AFX_IDP_SQL_MULTIPLE_ROWS_AFFECTED "Multiple rows were updated."
|
|
AFX_IDP_SQL_NO_CURRENT_RECORD "Operation failed, no current record."
|
|
AFX_IDP_SQL_NO_ROWS_AFFECTED
|
|
"No rows were affected by the update or delete operation."
|
|
AFX_IDP_SQL_RECORDSET_READONLY "Recordset is read-only"
|
|
AFX_IDP_SQL_SQL_NO_TOTAL
|
|
"ODBC driver is incapable of handling LongBinary data."
|
|
AFX_IDP_SQL_ODBC_LOAD_FAILED "Attempt to load odbc dll failed."
|
|
AFX_IDP_SQL_DYNASET_NOT_SUPPORTED
|
|
"ODBC driver does not support dynasets."
|
|
AFX_IDP_SQL_SNAPSHOT_NOT_SUPPORTED
|
|
"ODBC cursor library (odbccurs) required for snapshot support."
|
|
AFX_IDP_SQL_API_CONFORMANCE
|
|
"ODBC driver incompatible with MFC database classes (API_CONFORMANCE >= SQL_OAC_LEVEL1 required)"
|
|
AFX_IDP_SQL_SQL_CONFORMANCE
|
|
"ODBC driver incompatible with MFC database classes (SQL_CONFORMANCE >= SQL_OSC_MINIMUM required)"
|
|
AFX_IDP_SQL_NO_DATA_FOUND
|
|
"Attempt to scroll past end or before beginning of data"
|
|
AFX_IDP_SQL_ROW_UPDATE_NOT_SUPPORTED
|
|
"Dynasets not supported by ODBC driver"
|
|
AFX_IDP_SQL_ODBC_V2_REQUIRED
|
|
"ODBC Level 2 compliant driver required"
|
|
AFX_IDP_SQL_NO_POSITIONED_UPDATES
|
|
"Dynasets not supported by ODBC driver"
|
|
AFX_IDP_SQL_LOCK_MODE_NOT_SUPPORTED
|
|
"Requested lock mode is not supported"
|
|
AFX_IDP_SQL_DATA_TRUNCATED
|
|
"Data truncated"
|
|
END
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#endif //!_AFXDLL
|
|
#endif //__AFXDB_RC__
|