Files
InfectedRose/InfectedRose.Database/DataType.cs
2019-11-13 19:45:48 +01:00

15 lines
397 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace InfectedRose.Database
{
public enum DataType : uint
{
Nothing, // cant remember if those are just skipped/ignored or even showed up
Integer,
Unknown1, // never used?
Float,
Text, // called STRING in MSSQL?
Boolean,
Bigint, // or DATETIME?
Unknown2, // never used?
Varchar // called TEXT in MSSQL?
}
}