// ********************************************************************** // // Copyright (c) 2003-2004 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 #include #include using namespace std; using namespace Ice; using namespace Freeze; using namespace Test; int run(const CommunicatorPtr& communicator, const string& envName, const string& dbName) { Freeze::ConnectionPtr connection = createConnection(communicator, envName); IntSMap m(connection, dbName); m.put(IntSMap::value_type(0, S())); return EXIT_SUCCESS; } int main(int argc, char* argv[]) { int status; Ice::CommunicatorPtr communicator; string envName = "db"; try { communicator = Ice::initialize(argc, argv); if(argc != 1) { envName = argv[1]; envName += "/"; envName += "db"; } status = run(communicator, envName, "default.db"); } catch(const Ice::Exception& ex) { cerr << ex << endl; status = EXIT_FAILURE; } try { communicator->destroy(); } catch(const Ice::Exception& ex) { cerr << ex << endl; status = EXIT_FAILURE; } return status; }