You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
auto insertJoinTableStmt{ prepareStatement("INSERT INTO TimestampVariableFilepath(filepath_id, variable_id, timestamp_id) VALUES ((SELECT id FROM Filepaths WHERE filepath = @PT), \
261
+
auto insertJoinTableStmt{ prepareStatement("INSERT OR IGNORE INTO TimestampVariableFilepath(filepath_id, variable_id, timestamp_id) VALUES ((SELECT id FROM Filepaths WHERE filepath = @PT), \
261
262
(SELECT id FROM Variables WHERE variable = @VR), \
262
-
(SELECT id from Timestamps WHERE timestamp = @TS)) \
263
-
ON CONFLICT DO NOTHING; \
263
+
(SELECT id from Timestamps WHERE timestamp = @TS)); \
0 commit comments