|
<< Click to Display Table of Contents >> Navigation: iVend Database Database > Tables > CfgHardwareDevice Table |
Navigation: iVend Database Database > Tables >
iVend 6.6 Database Help
CfgHardwareDevice Table
Collapse All Expand All
iVend Database Database : CfgHardwareDevice Table |
Description
Stores the hardware DLL information registered in the system.
Properties
Creation Date |
4/13/2015 12:00 PM |
File Group |
PRIMARY |
Text File Group |
PRIMARY |
System Object |
|
Published for Replication |
|
Rows |
3 |
Data Space Used |
24.00 KB |
Index Space Used |
8.00 KB |
Columns
|
Column Name |
Description |
Datatype |
Length |
Allow Nulls |
Default |
Formula |
|
HardwareKey |
Value is the system generated Primary Key of the table. |
VarWChar |
50 |
|
|
|
|
Id |
Value is the id of the hardware. |
VarWChar |
20 |
|
|
|
|
Description |
Value is the description of the hardware. |
VarWChar |
100 |
|
|
|
|
AssemblyName |
Value is the assembly information i.e. the complete path where the assembly for the device is kept. |
VarWChar |
200 |
|
|
|
|
ClassName |
Value is the class name which handles the device in assembly. |
VarWChar |
200 |
|
|
|
|
Location |
Value is the path where the hardware assemblies can be found. |
VarWChar |
200 |
|
|
|
|
HardwareType |
Hardware Type Valid values are: ReceiptPrinter = 0 DocumentPrinter = 1 CashDrawer = 2 PoleDisplay = 3 MagstripeReader = 4 Scale = 5 MICR = 6 SignatureCapture = 7 (For future use) BarcodeReader = 8 |
Integer |
4 |
|
|
|
|
ConfigData |
Store the device specific configuration information in XML format. E.g. Device Name etc |
LongVarWChar |
16 |
|
|
|
|
Created |
Date of creation of this record |
DBTimeStamp |
4 |
|
|
|
|
CreatedBy |
Reference of user who has created this record. See also Security User |
VarWChar |
50 |
|
|
|
|
Modified |
Date of last modification of this record |
DBTimeStamp |
4 |
|
|
|
|
ModifiedBy |
Reference of user who has modified this record. See also Security User |
VarWChar |
50 |
|
|
|
|
IsDeleted |
Value is True if the record has been deleted from the system. Record is always Soft Deleted |
Boolean |
1 |
|
|
|
Indexes
Index |
Description |
Primary |
Unique |
|
|
|
SQL
SET ANSI_NULLS ON SET QUOTED_IDENTIFIER ON CREATE TABLE [dbo].[CfgHardwareDevice]( [HardwareKey] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [Id] [nvarchar](20) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [Description] [nvarchar](100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, [AssemblyName] [nvarchar](200) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [ClassName] [nvarchar](200) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [Location] [nvarchar](200) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [HardwareType] [int] NOT NULL, [ConfigData] [ntext] COLLATE SQL_Latin1_General_CP1_CI_AS NULL, [Created] [datetime] NOT NULL, [CreatedBy] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [Modified] [datetime] NOT NULL, [ModifiedBy] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [IsDeleted] [bit] NOT NULL, CONSTRAINT [PK_CfgHardwareDevice] PRIMARY KEY CLUSTERED ( [HardwareKey] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] |
See Also
© 2019 All Rights Reserved.
Send comments on this topic.