aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Tango.FSE.Common/SQL
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2020-08-03 12:16:21 +0300
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2020-08-03 12:16:21 +0300
commitbd1221e36ee3e493dc25bd32559f846519fe60d0 (patch)
treee4462d6672223b1fb43ee017e256e13301cec9f2 /Software/Visual_Studio/FSE/Tango.FSE.Common/SQL
parent99cbacc067251a3841fc1aca99e029146ed11c15 (diff)
downloadTango-bd1221e36ee3e493dc25bd32559f846519fe60d0.tar.gz
Tango-bd1221e36ee3e493dc25bd32559f846519fe60d0.zip
Refactored RemoteSQL on procedures.
Fixed issue with generic types display on code editor. Added line wrap toggle to procedure designer output.
Diffstat (limited to 'Software/Visual_Studio/FSE/Tango.FSE.Common/SQL')
-rw-r--r--Software/Visual_Studio/FSE/Tango.FSE.Common/SQL/RemoteSqlCommandResult.cs9
1 files changed, 5 insertions, 4 deletions
diff --git a/Software/Visual_Studio/FSE/Tango.FSE.Common/SQL/RemoteSqlCommandResult.cs b/Software/Visual_Studio/FSE/Tango.FSE.Common/SQL/RemoteSqlCommandResult.cs
index b4714c1aa..34ab74a68 100644
--- a/Software/Visual_Studio/FSE/Tango.FSE.Common/SQL/RemoteSqlCommandResult.cs
+++ b/Software/Visual_Studio/FSE/Tango.FSE.Common/SQL/RemoteSqlCommandResult.cs
@@ -3,25 +3,26 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
+using Tango.PPC.Shared.SQL;
namespace Tango.FSE.Common.SQL
{
public class RemoteSqlCommandResult
{
public int LocalAffectedRecords { get; set; }
- public List<Dictionary<String, Object>> LocalRows { get; set; }
+ public RemoteSqlDataSet LocalDatSet { get; set; }
public bool HasLocalError { get; set; }
public String LocalError { get; set; }
public int GlobalAffectedRecords { get; set; }
- public List<Dictionary<String, Object>> GlobalRows { get; set; }
+ public RemoteSqlDataSet GLobalDataSet { get; set; }
public bool HasGlobalError { get; set; }
public String GlobalError { get; set; }
public RemoteSqlCommandResult()
{
- LocalRows = new List<Dictionary<string, object>>();
- GlobalRows = new List<Dictionary<string, object>>();
+ LocalDatSet = new RemoteSqlDataSet();
+ GLobalDataSet = new RemoteSqlDataSet();
}
}
}