Many changes for 400G DSP
Minimal Example ...
This commit is contained in:
@@ -159,7 +159,7 @@ classdef DBHandler < handle
|
||||
duplictae_sync = obj.fetch("SELECT COALESCE(Runs.rx_sync_path,'NaN') AS rx_sync_path, COUNT(*) AS occurrences FROM Runs GROUP BY rx_sync_path HAVING COUNT(*) > 1");
|
||||
|
||||
if size(duplictae_raw,2) > 1
|
||||
for i = 1:size(duplictae_raw,2)-1
|
||||
for i = 1:size(duplictae_raw,1)
|
||||
fprintf('Raw Rx Paths: Found %d duplictaes of %s \n',duplictae_raw.occurrences(i),duplictae_raw.rx_raw_path(i));
|
||||
end
|
||||
end
|
||||
@@ -349,6 +349,11 @@ classdef DBHandler < handle
|
||||
|
||||
|
||||
|
||||
function executeSQL(obj, query)
|
||||
% This method executes an SQL statement using MATLAB's execute function.
|
||||
execute(obj.conn, query);
|
||||
end
|
||||
|
||||
|
||||
function answer = fetch(obj,query)
|
||||
answer = fetch(obj.conn,query);
|
||||
|
||||
Reference in New Issue
Block a user