コード例 #1
0
        internal RemoteServerScript(RemoteServerProcess process, ServerScript serverScript) : base()
        {
            _process      = process;
            _serverScript = serverScript;

            _batches = new RemoteServerBatches();
            foreach (ServerBatch batch in serverScript.Batches)
            {
                _batches.Add(new RemoteServerBatch(this, batch));
            }
        }
コード例 #2
0
        // PrepareScript
        public IRemoteServerScript PrepareScript(string script, DebugLocator locator)
        {
            ServerScript localScript = (ServerScript)_serverProcess.PrepareScript(script, locator);

            return(new RemoteServerScript(this, localScript));
        }
コード例 #3
0
ファイル: ServerBatch.cs プロジェクト: laszlo-kiss/Dataphor
 internal ServerBatch(ServerScript script, Statement batch) : base()
 {
     _script = script;
     _batch  = batch;
 }