Win32 API 日本語リファレンス
ホームSystem.Search › DBSTATUSENUM

DBSTATUSENUM

列挙型
基底型i4

メンバー 14

名前10進16進
DBSTATUS_S_OK00x0
DBSTATUS_E_BADACCESSOR10x1
DBSTATUS_E_CANTCONVERTVALUE20x2
DBSTATUS_S_ISNULL30x3
DBSTATUS_S_TRUNCATED40x4
DBSTATUS_E_SIGNMISMATCH50x5
DBSTATUS_E_DATAOVERFLOW60x6
DBSTATUS_E_CANTCREATE70x7
DBSTATUS_E_UNAVAILABLE80x8
DBSTATUS_E_PERMISSIONDENIED90x9
DBSTATUS_E_INTEGRITYVIOLATION100xA
DBSTATUS_E_SCHEMAVIOLATION110xB
DBSTATUS_E_BADSTATUS120xC
DBSTATUS_S_DEFAULT130xD

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum DBSTATUSENUM : int {
    DBSTATUS_S_OK = 0,
    DBSTATUS_E_BADACCESSOR = 1,
    DBSTATUS_E_CANTCONVERTVALUE = 2,
    DBSTATUS_S_ISNULL = 3,
    DBSTATUS_S_TRUNCATED = 4,
    DBSTATUS_E_SIGNMISMATCH = 5,
    DBSTATUS_E_DATAOVERFLOW = 6,
    DBSTATUS_E_CANTCREATE = 7,
    DBSTATUS_E_UNAVAILABLE = 8,
    DBSTATUS_E_PERMISSIONDENIED = 9,
    DBSTATUS_E_INTEGRITYVIOLATION = 10,
    DBSTATUS_E_SCHEMAVIOLATION = 11,
    DBSTATUS_E_BADSTATUS = 12,
    DBSTATUS_S_DEFAULT = 13
} DBSTATUSENUM;
public enum DBSTATUSENUM : int
{
    DBSTATUS_S_OK = 0,
    DBSTATUS_E_BADACCESSOR = 1,
    DBSTATUS_E_CANTCONVERTVALUE = 2,
    DBSTATUS_S_ISNULL = 3,
    DBSTATUS_S_TRUNCATED = 4,
    DBSTATUS_E_SIGNMISMATCH = 5,
    DBSTATUS_E_DATAOVERFLOW = 6,
    DBSTATUS_E_CANTCREATE = 7,
    DBSTATUS_E_UNAVAILABLE = 8,
    DBSTATUS_E_PERMISSIONDENIED = 9,
    DBSTATUS_E_INTEGRITYVIOLATION = 10,
    DBSTATUS_E_SCHEMAVIOLATION = 11,
    DBSTATUS_E_BADSTATUS = 12,
    DBSTATUS_S_DEFAULT = 13,
}
Public Enum DBSTATUSENUM As Integer
    DBSTATUS_S_OK = 0
    DBSTATUS_E_BADACCESSOR = 1
    DBSTATUS_E_CANTCONVERTVALUE = 2
    DBSTATUS_S_ISNULL = 3
    DBSTATUS_S_TRUNCATED = 4
    DBSTATUS_E_SIGNMISMATCH = 5
    DBSTATUS_E_DATAOVERFLOW = 6
    DBSTATUS_E_CANTCREATE = 7
    DBSTATUS_E_UNAVAILABLE = 8
    DBSTATUS_E_PERMISSIONDENIED = 9
    DBSTATUS_E_INTEGRITYVIOLATION = 10
    DBSTATUS_E_SCHEMAVIOLATION = 11
    DBSTATUS_E_BADSTATUS = 12
    DBSTATUS_S_DEFAULT = 13
End Enum
import enum

class DBSTATUSENUM(enum.IntEnum):
    DBSTATUS_S_OK = 0
    DBSTATUS_E_BADACCESSOR = 1
    DBSTATUS_E_CANTCONVERTVALUE = 2
    DBSTATUS_S_ISNULL = 3
    DBSTATUS_S_TRUNCATED = 4
    DBSTATUS_E_SIGNMISMATCH = 5
    DBSTATUS_E_DATAOVERFLOW = 6
    DBSTATUS_E_CANTCREATE = 7
    DBSTATUS_E_UNAVAILABLE = 8
    DBSTATUS_E_PERMISSIONDENIED = 9
    DBSTATUS_E_INTEGRITYVIOLATION = 10
    DBSTATUS_E_SCHEMAVIOLATION = 11
    DBSTATUS_E_BADSTATUS = 12
    DBSTATUS_S_DEFAULT = 13
// DBSTATUSENUM
pub const DBSTATUS_S_OK: i32 = 0;
pub const DBSTATUS_E_BADACCESSOR: i32 = 1;
pub const DBSTATUS_E_CANTCONVERTVALUE: i32 = 2;
pub const DBSTATUS_S_ISNULL: i32 = 3;
pub const DBSTATUS_S_TRUNCATED: i32 = 4;
pub const DBSTATUS_E_SIGNMISMATCH: i32 = 5;
pub const DBSTATUS_E_DATAOVERFLOW: i32 = 6;
pub const DBSTATUS_E_CANTCREATE: i32 = 7;
pub const DBSTATUS_E_UNAVAILABLE: i32 = 8;
pub const DBSTATUS_E_PERMISSIONDENIED: i32 = 9;
pub const DBSTATUS_E_INTEGRITYVIOLATION: i32 = 10;
pub const DBSTATUS_E_SCHEMAVIOLATION: i32 = 11;
pub const DBSTATUS_E_BADSTATUS: i32 = 12;
pub const DBSTATUS_S_DEFAULT: i32 = 13;
// DBSTATUSENUM
const (
	DBSTATUS_S_OK int32 = 0
	DBSTATUS_E_BADACCESSOR int32 = 1
	DBSTATUS_E_CANTCONVERTVALUE int32 = 2
	DBSTATUS_S_ISNULL int32 = 3
	DBSTATUS_S_TRUNCATED int32 = 4
	DBSTATUS_E_SIGNMISMATCH int32 = 5
	DBSTATUS_E_DATAOVERFLOW int32 = 6
	DBSTATUS_E_CANTCREATE int32 = 7
	DBSTATUS_E_UNAVAILABLE int32 = 8
	DBSTATUS_E_PERMISSIONDENIED int32 = 9
	DBSTATUS_E_INTEGRITYVIOLATION int32 = 10
	DBSTATUS_E_SCHEMAVIOLATION int32 = 11
	DBSTATUS_E_BADSTATUS int32 = 12
	DBSTATUS_S_DEFAULT int32 = 13
)
const
  DBSTATUS_S_OK = 0;
  DBSTATUS_E_BADACCESSOR = 1;
  DBSTATUS_E_CANTCONVERTVALUE = 2;
  DBSTATUS_S_ISNULL = 3;
  DBSTATUS_S_TRUNCATED = 4;
  DBSTATUS_E_SIGNMISMATCH = 5;
  DBSTATUS_E_DATAOVERFLOW = 6;
  DBSTATUS_E_CANTCREATE = 7;
  DBSTATUS_E_UNAVAILABLE = 8;
  DBSTATUS_E_PERMISSIONDENIED = 9;
  DBSTATUS_E_INTEGRITYVIOLATION = 10;
  DBSTATUS_E_SCHEMAVIOLATION = 11;
  DBSTATUS_E_BADSTATUS = 12;
  DBSTATUS_S_DEFAULT = 13;
// DBSTATUSENUM
pub const DBSTATUS_S_OK: i32 = 0;
pub const DBSTATUS_E_BADACCESSOR: i32 = 1;
pub const DBSTATUS_E_CANTCONVERTVALUE: i32 = 2;
pub const DBSTATUS_S_ISNULL: i32 = 3;
pub const DBSTATUS_S_TRUNCATED: i32 = 4;
pub const DBSTATUS_E_SIGNMISMATCH: i32 = 5;
pub const DBSTATUS_E_DATAOVERFLOW: i32 = 6;
pub const DBSTATUS_E_CANTCREATE: i32 = 7;
pub const DBSTATUS_E_UNAVAILABLE: i32 = 8;
pub const DBSTATUS_E_PERMISSIONDENIED: i32 = 9;
pub const DBSTATUS_E_INTEGRITYVIOLATION: i32 = 10;
pub const DBSTATUS_E_SCHEMAVIOLATION: i32 = 11;
pub const DBSTATUS_E_BADSTATUS: i32 = 12;
pub const DBSTATUS_S_DEFAULT: i32 = 13;
const
  DBSTATUS_S_OK* = 0
  DBSTATUS_E_BADACCESSOR* = 1
  DBSTATUS_E_CANTCONVERTVALUE* = 2
  DBSTATUS_S_ISNULL* = 3
  DBSTATUS_S_TRUNCATED* = 4
  DBSTATUS_E_SIGNMISMATCH* = 5
  DBSTATUS_E_DATAOVERFLOW* = 6
  DBSTATUS_E_CANTCREATE* = 7
  DBSTATUS_E_UNAVAILABLE* = 8
  DBSTATUS_E_PERMISSIONDENIED* = 9
  DBSTATUS_E_INTEGRITYVIOLATION* = 10
  DBSTATUS_E_SCHEMAVIOLATION* = 11
  DBSTATUS_E_BADSTATUS* = 12
  DBSTATUS_S_DEFAULT* = 13
enum DBSTATUSENUM : int {
    DBSTATUS_S_OK = 0,
    DBSTATUS_E_BADACCESSOR = 1,
    DBSTATUS_E_CANTCONVERTVALUE = 2,
    DBSTATUS_S_ISNULL = 3,
    DBSTATUS_S_TRUNCATED = 4,
    DBSTATUS_E_SIGNMISMATCH = 5,
    DBSTATUS_E_DATAOVERFLOW = 6,
    DBSTATUS_E_CANTCREATE = 7,
    DBSTATUS_E_UNAVAILABLE = 8,
    DBSTATUS_E_PERMISSIONDENIED = 9,
    DBSTATUS_E_INTEGRITYVIOLATION = 10,
    DBSTATUS_E_SCHEMAVIOLATION = 11,
    DBSTATUS_E_BADSTATUS = 12,
    DBSTATUS_S_DEFAULT = 13,
}
#define global DBSTATUS_S_OK                 0x0
#define global DBSTATUS_E_BADACCESSOR        0x1
#define global DBSTATUS_E_CANTCONVERTVALUE   0x2
#define global DBSTATUS_S_ISNULL             0x3
#define global DBSTATUS_S_TRUNCATED          0x4
#define global DBSTATUS_E_SIGNMISMATCH       0x5
#define global DBSTATUS_E_DATAOVERFLOW       0x6
#define global DBSTATUS_E_CANTCREATE         0x7
#define global DBSTATUS_E_UNAVAILABLE        0x8
#define global DBSTATUS_E_PERMISSIONDENIED   0x9
#define global DBSTATUS_E_INTEGRITYVIOLATION 0xA
#define global DBSTATUS_E_SCHEMAVIOLATION    0xB
#define global DBSTATUS_E_BADSTATUS          0xC
#define global DBSTATUS_S_DEFAULT            0xD