We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e22d5d3 commit fe6aab1Copy full SHA for fe6aab1
1 file changed
PXWeb.SavedQuery.Oracle/DataAccessor.cs
@@ -35,9 +35,12 @@ public DataAccessor()
35
36
if (string.IsNullOrWhiteSpace(System.Configuration.ConfigurationManager.AppSettings["SavedQueryTableName"]))
37
{
38
- throw new System.Configuration.ConfigurationErrorsException("AppSetting SavedQueryTableName not set in config file");
+ _savedQueryTableName = "SAVEDQUERYMETA";
39
}
40
+ else
41
+ {
42
_savedQueryTableName = System.Configuration.ConfigurationManager.AppSettings["SavedQueryTableName"];
43
+ }
44
45
46
public PCAxis.Query.SavedQuery Load(int id)
0 commit comments