- indexing
- title: "ODBC Error description structure"
- project: "Visual Eiffel"
- revision: "$Revision: 1.1 $"
- copyright: "Copyright (C) 1996-2005 Object Tools Group"
- license: "http://visual-eiffel.com/license"
- cluster: dale
class ODBC_ERROR_DESCRIPTION
- inherit
-
DALE_SERVER
-
- redefine
- out
- end
- creation {ODBC_STATUS}
- make
- feature -- Attributes:
-
sql_state: STRING
-
message: STRING
-
native_code: INTEGER
- feature {ODBC_STATUS}
-
make (s, msg: STRING; code: INTEGER)
-
-
-- creation procedure
-
- require
-
valid_sql_state:
valid_sql_state (s)
-
valid_message:
msg /= void
end -- class ODBC_ERROR_DESCRIPTION