8 lines
433 B
Plaintext
8 lines
433 B
Plaintext
|
|
INSERT INTO [dbo].[Sensors]([SensorType], [SerialNumber])
|
||
|
|
VALUES(4, 'TSU_TestSpecific');
|
||
|
|
|
||
|
|
DECLARE @sensorID int;
|
||
|
|
SET @sensorID = CAST(SCOPE_IDENTITY() as int);
|
||
|
|
|
||
|
|
INSERT INTO [dbo].[SensorsUART] ([SensorId], [BaudRate], [DataBits], [StopBits], [Parity], [FlowControl], [DataFormat], [LastModified], [LastModifiedBy], [UserTags])
|
||
|
|
VALUES(@sensorID, 57600, 8, 'One','None','None','Binary','2018-12-18 12:00:00.000','SYSTEM', 0);
|