mirror of
https://github.com/evopro-ag/Sharp7Reactive.git
synced 2025-12-16 11:42:52 +00:00
Extend supported variables and improve parser errors
This commit is contained in:
@@ -1,12 +1,52 @@
|
||||
namespace Sharp7.Rx.Enums;
|
||||
|
||||
// see https://support.industry.siemens.com/cs/mdm/109747174?c=88343664523&lc=de-DE
|
||||
internal enum DbType
|
||||
{
|
||||
Bit,
|
||||
|
||||
/// <summary>
|
||||
/// ASCII string
|
||||
/// </summary>
|
||||
String,
|
||||
|
||||
/// <summary>
|
||||
/// UTF16 string
|
||||
/// </summary>
|
||||
WString,
|
||||
|
||||
Byte,
|
||||
|
||||
/// <summary>
|
||||
/// Int16
|
||||
/// </summary>
|
||||
Int,
|
||||
|
||||
/// <summary>
|
||||
/// UInt16
|
||||
/// </summary>
|
||||
UInt,
|
||||
|
||||
/// <summary>
|
||||
/// Int32
|
||||
/// </summary>
|
||||
DInt,
|
||||
|
||||
/// <summary>
|
||||
/// UInt32
|
||||
/// </summary>
|
||||
UDInt,
|
||||
|
||||
/// <summary>
|
||||
/// Int64
|
||||
/// </summary>
|
||||
LInt,
|
||||
|
||||
/// <summary>
|
||||
/// UInt64
|
||||
/// </summary>
|
||||
ULInt,
|
||||
|
||||
Single,
|
||||
Double,
|
||||
Integer,
|
||||
DInteger,
|
||||
ULong
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user