Skip to content

Commit

Permalink
Added internal API method odaconsumer.Connection#isOpen
Browse files Browse the repository at this point in the history
  • Loading branch information
Linda Chan committed Jan 26, 2010
1 parent 19e7973 commit 388bcd2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#************************************************************************
# Copyright (c) 2004, 2009 Actuate Corporation.
# Copyright (c) 2004, 2010 Actuate Corporation.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
Expand Down Expand Up @@ -254,7 +254,7 @@ odaconsumer.CannotGetConnectionMetaData=Cannot get the connection metadata.
odaconsumer.CannotGetMaxConnections=Cannot get the maximum number of connections for the data source.
odaconsumer.CannotGetMaxStatements=Cannot get the maximum number of queries for the data source.
odaconsumer.CannotGetDataSetMetaData=Cannot get the data set metadata {0} from the data source.
odaconsumer.CannotPrepareStatement=Failed to prepare the following query for the data set type {1}. \n[{0}]
odaconsumer.CannotPrepareStatement=Failed to prepare the following query for the data set type ({1}). \n[{0}]
odaconsumer.CannotCloseConnection=Cannot close the connection.
odaconsumer.CannotOpenConnection=Cannot open the connection for the driver: {0}.
odaconsumer.CannotDetermineSupportForMultipleOpenResults=Cannot determine the support for multiple open results.
Expand Down Expand Up @@ -327,6 +327,7 @@ odaconsumer.CannotFindLogDirectory=Cannot find log directory.
odaconsumer.ParameterNames=\nParameter defined with model name ({0}) and driver-defined name ({1}).
odaconsumer.InvalidArgument=The method ({0}) was called with an invalid argument ({1}).
odaconsumer.CannotSetConnectionLocale=Unable to set connection locale ({0}).
odaconsumer.CannotCheckOpenConnection=Unable to check whether the connection is already open.

odaconsumer.manager.CannotGetNamedResultsAfterExecuteQuery=Cannot get result sets by name after executeQuery() has been called.
odaconsumer.manager.CannotSetParamBeforePrepare=Cannot set input parameters before statement has been prepared.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2004, 2009 Actuate Corporation.
* Copyright (c) 2004, 2010 Actuate Corporation.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
Expand Down Expand Up @@ -330,6 +330,7 @@ public class ResourceConstants
public final static String PARAMETER_NAMES_INFO = "odaconsumer.ParameterNames";
public final static String INVALID_METHOD_ARGUMENT = "odaconsumer.InvalidArgument";
public final static String CANNOT_SET_CONN_LOCALE = "odaconsumer.CannotSetConnectionLocale";
public final static String CANNOT_CHECK_CONN_ISOPEN = "odaconsumer.CannotCheckOpenConnection";

//OLAP errors
public final static String OLAPDIR_CREATE_FAIL = "data.olap.OlapDirCreateFail";
Expand Down

0 comments on commit 388bcd2

Please sign in to comment.