summaryrefslogtreecommitdiff
path: root/cpp/demo/Database/Oracle/occi/EmpI.cpp
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2015-03-18 12:58:16 -0230
committerMatthew Newhook <matthew@zeroc.com>2015-03-18 12:58:16 -0230
commit9b7668c7c92cf9cb311fe444cdddb489cd2a219d (patch)
tree5016567c58c81f5654e9d01935e199c6bf4761d2 /cpp/demo/Database/Oracle/occi/EmpI.cpp
parentVS add-in & build updates: (diff)
downloadice-9b7668c7c92cf9cb311fe444cdddb489cd2a219d.tar.bz2
ice-9b7668c7c92cf9cb311fe444cdddb489cd2a219d.tar.xz
ice-9b7668c7c92cf9cb311fe444cdddb489cd2a219d.zip
Removed demos.
Moved demoscript to distribution.
Diffstat (limited to 'cpp/demo/Database/Oracle/occi/EmpI.cpp')
-rw-r--r--cpp/demo/Database/Oracle/occi/EmpI.cpp191
1 files changed, 0 insertions, 191 deletions
diff --git a/cpp/demo/Database/Oracle/occi/EmpI.cpp b/cpp/demo/Database/Oracle/occi/EmpI.cpp
deleted file mode 100644
index bb64c9dd565..00000000000
--- a/cpp/demo/Database/Oracle/occi/EmpI.cpp
+++ /dev/null
@@ -1,191 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved.
-//
-// This copy of Ice is licensed to you under the terms described in the
-// ICE_LICENSE file included in this distribution.
-//
-// **********************************************************************
-
-#include <EmpI.h>
-
-using namespace std;
-using namespace oracle::occi;
-
-EmpI::EmpI(const RefAny& ref, const ConnectionHolderPtr& conh, const DeptFactoryIPtr& factory) :
- _ref(ref), _conh(conh), _factory(factory)
-{
-}
-
-HR::EmpDesc
-EmpI::getDesc(const Ice::Current& current)
-{
- Environment* env = _factory->getEnv();
- HR::EmpDesc result;
-
- Ref<EMP_T> empRef = decodeRef(current.id.name, env, _conh->connection());
-
- result.empno = empRef->getEmpno();
- result.ename = empRef->getEname();
- result.job = empRef->getJob();
-
- Ref<EMP_T> mgrRef = empRef->getMgrref();
- if(!mgrRef.isNull())
- {
- Ice::Identity mgrId;
- mgrId.name = encodeRef(mgrRef, env);
- mgrId.category = _factory->getCategory();
- result.mgr = HR::EmpPrx::uncheckedCast(current.adapter->createProxy(mgrId));
- }
-
- result.hiredate = empRef->getHiredate().toText();
-
- if(!empRef->getSal().isNull())
- {
- try
- {
- result.sal = empRef->getSal().toText(env, "99999.99");
- }
- catch(const std::exception&)
- {
- cerr << "sal overflow" << endl;
- }
- }
-
- if(!empRef->getComm().isNull())
- {
- try
- {
- result.comm = empRef->getComm().toText(env, "99999.99");
- }
- catch(const std::exception&)
- {
- cerr << "comm overflow" << endl;
- }
- }
-
- Ref<DEPT_T> deptRef = empRef->getDeptref();
- if(!deptRef.isNull())
- {
- Ice::Identity deptId;
- deptId.name = encodeRef(deptRef, env);
- deptId.category = _factory->getCategory();
- result.edept = HR::DeptPrx::uncheckedCast(current.adapter->createProxy(deptId));
- }
- _conh->commit();
- return result;
-}
-
-void
-EmpI::updateField(const string& field, const string& newValue, const Ice::Current& current)
-{
- Ref<EMP_T> empRef = decodeRef(current.id.name, _factory->getEnv(), _conh->connection());
-
- if(field == "ename")
- {
- empRef->setEname(newValue);
- }
- else if(field == "job")
- {
- empRef->setJob(newValue);
- }
- else if(field == "hiredate")
- {
- if(newValue == "")
- {
- empRef->setHiredate(Date());
- }
- else
- {
- Date hiredate(_factory->getEnv());
- hiredate.fromText(newValue);
- empRef->setHiredate(hiredate);
- }
- }
- else if(field == "sal")
- {
- if(newValue == "")
- {
- empRef->setSal(Number());
- }
- else
- {
- Number sal(0);
- sal.fromText(_factory->getEnv(), newValue, "99999.99");
- empRef->setSal(sal);
- }
- }
- else if(field == "comm")
- {
- if(newValue == "")
- {
- empRef->setComm(Number());
- }
- else
- {
- Number comm(0);
- comm.fromText(_factory->getEnv(), newValue, "0.999");
- empRef->setComm(comm);
- }
- }
- else
- {
- throw HR::SqlException("There is no field " + field + " in type EMP_T");
- }
- empRef->markModified();
- _conh->commit();
-}
-
-void
-EmpI::updateMgr(int newMgr, const Ice::Current& current)
-{
- Ref<EMP_T> empRef = decodeRef(current.id.name, _factory->getEnv(), _conh->connection());
-
- if(newMgr == 0)
- {
- empRef->setMgrref(Ref<EMP_T>());
- }
- else
- {
- Ref<EMP_T> mgrRef = _factory->findEmpRefByNo(newMgr, _conh->connection());
-
- if(mgrRef.isNull())
- {
- throw HR::SqlException("There is no employee with this empno");
- }
- empRef->setMgrref(mgrRef);
- }
- empRef->markModified();
- _conh->commit();
-}
-
-void
-EmpI::updateDept(int newDept, const Ice::Current& current)
-{
- Ref<EMP_T> empRef = decodeRef(current.id.name, _factory->getEnv(), _conh->connection());
-
- if(newDept == 0)
- {
- empRef->setDeptref(Ref<DEPT_T>());
- }
- else
- {
- Ref<DEPT_T> deptRef = _factory->findDeptRefByNo(newDept, _conh->connection());
-
- if(deptRef.isNull())
- {
- throw HR::SqlException("There is no department with this deptno");
- }
- empRef->setDeptref(deptRef);
- }
- empRef->markModified();
- _conh->commit();
-}
-
-void
-EmpI::remove(const Ice::Current& current)
-{
- Ref<EMP_T> empRef = decodeRef(current.id.name, _factory->getEnv(), _conh->connection());
- empRef->markDelete();
- _conh->commit();
-}