aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Synchronization/Local/Constants.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.Synchronization/Local/Constants.cs')
-rw-r--r--Software/Visual_Studio/Tango.Synchronization/Local/Constants.cs35
1 files changed, 35 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Synchronization/Local/Constants.cs b/Software/Visual_Studio/Tango.Synchronization/Local/Constants.cs
new file mode 100644
index 000000000..ed8084301
--- /dev/null
+++ b/Software/Visual_Studio/Tango.Synchronization/Local/Constants.cs
@@ -0,0 +1,35 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Tango.Synchronization.Local
+{
+ internal static class Constants
+ {
+ //SQLite Internal Constants
+ public const String SEQUENCE_TABLE_NAME = "sqlite_sequence";
+ public const String TABLE_INFO = "table_info";
+ public const String COLUMN_TYPE = "type";
+ public const String IS_NOT_NULL = "notnull";
+ public const String DEFAULT_VALUE = "dflt_value";
+
+ //Must Column Names.
+
+ /// <summary>
+ /// The table auto incremented id column name.
+ /// </summary>
+ public const String ID = "ID";
+
+ /// <summary>
+ /// The table unique identifier column name used for synchronization.
+ /// </summary>
+ public const String GUID = "GUID";
+
+ /// <summary>
+ /// The table last updated column name used for synchronization.
+ /// </summary>
+ public const String LAST_UPDATED = "LAST_UPDATED";
+ }
+}