diff options
author | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2010-04-08 07:17:49 +0000 |
---|---|---|
committer | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2010-04-08 07:17:49 +0000 |
commit | e79215ecc3479e44484c0cfa7c41c980af6e32f4 (patch) | |
tree | 5fd61b5a917400ecf6b8507e6367c849f1b82999 /sca-cpp/trunk/components/sqldb/sqldb-test | |
parent | e7a60b5b6b205b03dfdf58f9abf336eaeefb3f75 (diff) |
Simple SQL database component implementation, using PostgreSQL.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@931801 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rwxr-xr-x | sca-cpp/trunk/components/sqldb/sqldb-test | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/sca-cpp/trunk/components/sqldb/sqldb-test b/sca-cpp/trunk/components/sqldb/sqldb-test new file mode 100755 index 0000000000..c51e51df0c --- /dev/null +++ b/sca-cpp/trunk/components/sqldb/sqldb-test @@ -0,0 +1,31 @@ +#!/bin/sh + +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +# Setup +./pgsql-start tmp +./pgsql "drop table test" 1>/dev/null 2>&1 +./pgsql "create table test(key varchar(80), value varchar(80));" 1>/dev/null 2>&1 + +# Test +./pgsql-test 2>/dev/null +rc=$? + +# Cleanup +./pgsql-stop tmp +return $rc |