For help with installation, bugs reports or feature requests, please head over to our new forums.
	
Genuitec Community on GitHub
- This topic has 22 replies, 7 voices, and was last updated 18 years, 1 month ago by Brian Fernandes. 
- 
		AuthorPosts
- 
		
			
				
 capvidiaMemberI connect to the oracle database and want to change some data in the tables. I right-click on a table and choose edit data. But I get “Error: Cannot edit: null” error message at the bottom of appeared view. If I choose generate SELECT statement and run it , it works fine and I see results. What’s wrong? Where can I see more logs to troubleshot the issue. August 7, 2007 at 11:40 am #273633
 Riyad KallaMemberIf you check your log: 
 <workspace dir>\.metadata\.logyou may see an exception like “driver doesn’t support updatable result sets” or the like. It’s possible you are using a JDBC driver that doesn’t support edits. Make sure you are using the latest Oracle driver: 
 https://www.genuitec.com/forums/topic/db-where-can-i-download-a-oracle-jdbc-driver/August 7, 2007 at 11:35 pm #273651
 capvidiaMemberI believe the driver is OK, it works fine with my application and allows any operations with the database. I use oracle-14_g.jar driver. Also I tried to download tha latest one, the same result. I’m inserting stack trace, it seems the problem is with something else. !ENTRY com.genuitec.eclipse.sqlexplorer 4 4 2007-08-08 08:21:07.584 
 !MESSAGE Error opening edit view
 !STACK 0
 java.lang.NullPointerException
 at java.util.Properties$LineReader.readLine(Unknown Source)
 at java.util.Properties.load(Unknown Source)
 at java.util.PropertyResourceBundle.<init>(Unknown Source)
 at com.sun.rowset.JdbcRowSetResourceBundle.<init>(Unknown Source)
 at com.sun.rowset.JdbcRowSetResourceBundle.getJdbcRowSetResourceBundle(Unknown Source)
 at com.sun.rowset.JdbcRowSetImpl.<init>(Unknown Source)
 at com.genuitec.eclipse.sqlexplorer.views.EditDataView$3.<init>(EditDataView.java:278)
 at com.genuitec.eclipse.sqlexplorer.views.EditDataView.getRowSet(EditDataView.java:278)
 at com.genuitec.eclipse.sqlexplorer.views.EditDataView$1.run(EditDataView.java:121)
 at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67)
 at com.genuitec.eclipse.sqlexplorer.views.EditDataView.createEditArea(EditDataView.java:117)
 at com.genuitec.eclipse.sqlexplorer.actions.TableDirectEditInView.run(TableDirectEditInView.java:72)
 at org.eclipse.jface.action.Action.runWithEvent(Action.java:498)
 at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:545)
 at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:490)
 at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:402)
 at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
 at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938)
 at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3682)
 at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3293)
 at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389)
 at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353)
 at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219)
 at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466)
 at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289)
 at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461)
 at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)August 8, 2007 at 9:08 am #273669
 Loyal WaterMemberCan you go through the posting guidelines thread at the top of the forum and post your installation details here for us. August 8, 2007 at 9:03 pm #273706
 John YesbergMemberI have a similar problem. I’m using MySQL. I want to view, but not modify the contents of a table. With MyEclipse 5.1 it was fine. With 6.0.0M1, I can see the list of tables in the same way. But when I right-click edit “Edit Data”, I see “Error: Cannot edit: null” in the status line of the Edit Table view. I have a colleague who is using the same configuration as me (with a couple of extra plugins), and is also getting the same results. Driver Jar is mysql-connector-java-3.0.16-ga-bin.jar 
 Driver classname is com.mysql.jdbc.DriverMy error seems to be the same as capvidia’s: 
 !ENTRY com.genuitec.eclipse.sqlexplorer 4 4 2007-08-09 11:55:31.506
 !MESSAGE Error opening edit view
 !STACK 0
 java.lang.NullPointerException
 at java.util.Properties$LineReader.readLine(Unknown Source)
 at java.util.Properties.load(Unknown Source)
 at java.util.PropertyResourceBundle.<init>(Unknown Source)
 at com.sun.rowset.JdbcRowSetResourceBundle.<init>(Unknown Source)
 at com.sun.rowset.JdbcRowSetResourceBundle.getJdbcRowSetResourceBundle(Unknown Source)
 at com.sun.rowset.JdbcRowSetImpl.<init>(Unknown Source)
 at com.genuitec.eclipse.sqlexplorer.views.EditDataView$3.<init>(EditDataView.java:278)
 at com.genuitec.eclipse.sqlexplorer.views.EditDataView.getRowSet(EditDataView.java:278)
 at com.genuitec.eclipse.sqlexplorer.views.EditDataView$1.run(EditDataView.java:121)
 at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67)
 at com.genuitec.eclipse.sqlexplorer.views.EditDataView.createEditArea(EditDataView.java:117)
 at com.genuitec.eclipse.sqlexplorer.actions.TableDirectEditInView.run(TableDirectEditInView.java:72)
 at org.eclipse.jface.action.Action.runWithEvent(Action.java:498)
 at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:545)
 at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:490)
 at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:402)
 at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
 at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938)
 at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3682)
 at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3293)
 at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389)
 at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353)
 at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219)
 at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466)
 at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289)
 at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461)
 at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
 at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106)
 at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:153)
 at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106)
 at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76)
 at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363)
 at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
 at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
 at java.lang.reflect.Method.invoke(Unknown Source)
 at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:504)
 at org.eclipse.equinox.launcher.Main.basicRun(Main.java:443)
 at org.eclipse.equinox.launcher.Main.run(Main.java:1169)
 at org.eclipse.equinox.launcher.Main.main(Main.java:1144)My Installation details: *** Date: 
 Thursday, 9 August 2007 11:52:04 AM EST** System properties: 
 OS=WindowsXP
 OS version=5.1
 Java version=1.5.0_11*** MyEclipse details: 
 MyEclipse Enterprise Workbench
 Version: 6.0.0 M1
 Build id: 20070629-6.0.0-M1*** Eclipse details: 
 MyEclipse Enterprise WorkbenchVersion: 6.0.0 M1 
 Build id: 20070629-6.0.0-M1Eclipse Project SDK Version: 3.3.0.v20070607-7M7J-BIolz-OcxWxvWAPSfLPqevO 
 Build id: I20070625-1500Eclipse Platform Version: 3.3.0.v20070612-_19UEkLEzwsdF9jSqQ-G 
 Build id: I20070625-1500Eclipse Java Development Tools Version: 3.3.0.v20070606-0010-7o7jCHEFpPoqQYvnXqejeR 
 Build id: I20070625-1500Eclipse RCP Version: 3.3.0.v20070607-8y8eE8NEbsN3X_fjWS8HPNG 
 Build id: I20070625-1500Eclipse Plug-in Development Environment Version: 3.3.0.v20070607-7N7M-DUUEF6Ez0H46IcCC 
 Build id: I20070625-1500Eclipse Graphical Editing Framework Version: 3.3.0.v20070620 
 Build id: 20070620-1021Eclipse startup command=-os 
 win32
 -ws
 win32
 -arch
 x86
 -showsplash
 -launcher
 C:\Program Files\MyEclipse-6.0M1\eclipse\eclipse.exe
 -name
 Eclipse
 –launcher.library
 C:\Program Files\MyEclipse-6.0M1\eclipse\plugins\org.eclipse.equinox.launcher.win32.win32.x86_1.0.0.v20070523\eclipse_1017a.dll
 -startup
 C:\Program Files\MyEclipse-6.0M1\eclipse\plugins\org.eclipse.equinox.launcher_1.0.0.v20070606.jar
 -exitdata
 978_68
 -vm
 C:\Program Files\MyEclipse-6.0M1\jre\bin\javaw.exeMany thanks, John. August 9, 2007 at 12:04 am #273708
 capvidiaMemberI found similar complaint which is still open. https://www.genuitec.com/forums/topic/edit-data-error-myeclipse-6-0-0m1-eclipse-3-3-postgresql/&highlight=edit+data 
 It seems the issue indeed with MyEclipse IDE as it arises with different databases.My configuration 
 *** Date:
 Thursday, August 9, 2007 8:57:32 AM MSD** System properties: 
 OS=WindowsXP
 OS version=5.1
 Java version=1.5.0_11*** MyEclipse details: 
 MyEclipse Enterprise Workbench
 Version: 6.0.0 M1
 Build id: 20070629-6.0.0-M1*** Eclipse details: 
 MyEclipse Enterprise WorkbenchVersion: 6.0.0 M1 
 Build id: 20070629-6.0.0-M1Eclipse Graphical Editing Framework Version: 3.3.0.v20070620 
 Build id: 20070620-1021Eclipse Platform Version: 3.3.0.v20070612-_19UEkLEzwsdF9jSqQ-G 
 Build id: I20070625-1500Eclipse RCP Version: 3.3.0.v20070607-8y8eE8NEbsN3X_fjWS8HPNG 
 Build id: I20070625-1500Eclipse Java Development Tools Version: 3.3.0.v20070606-0010-7o7jCHEFpPoqQYvnXqejeR 
 Build id: I20070625-1500Eclipse Plug-in Development Environment Version: 3.3.0.v20070607-7N7M-DUUEF6Ez0H46IcCC 
 Build id: I20070625-1500Eclipse Project SDK Version: 3.3.0.v20070607-7M7J-BIolz-OcxWxvWAPSfLPqevO 
 Build id: I20070625-1500Eclipse startup command=-os 
 win32
 -ws
 win32
 -arch
 x86
 -showsplash
 -launcher
 E:\MyEclipse-6.0\eclipse\eclipse.exe
 -name
 Eclipse
 –launcher.library
 E:\MyEclipse-6.0\eclipse\plugins\org.eclipse.equinox.launcher.win32.win32.x86_1.0.0.v20070523\eclipse_1017a.dll
 -startup
 E:\MyEclipse-6.0\eclipse\plugins\org.eclipse.equinox.launcher_1.0.0.v20070606.jar
 -exitdata
 e28_6c
 -vm
 E:\MyEclipse-6.0\jre\bin\javaw.exeI’m not inserting log file as the only error appeared in has been posted earlier. regards 
 AlexanderAugust 9, 2007 at 1:19 am #273709
 capvidiaMemberAdditionally, I observe the next log after MyEclipse start up. 
 !SESSION 2007-08-09 09:46:10.007 ———————————————–
 eclipse.buildId=I20070625-1500
 java.version=1.5.0_11
 java.vendor=Sun Microsystems Inc.
 BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_RU
 Command-line arguments: -os win32 -ws win32 -arch x86!ENTRY org.eclipse.ui.workbench 2 0 2007-08-09 09:46:19.344 
 !MESSAGE A handler conflict occurred. This may disable some commands.
 !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2007-08-09 09:46:19.344
 !MESSAGE Conflict for ‘AUTOGEN:::com.genuitec.eclipse.sqlexplorer.mssql.procedureTypeNodeContribution/com.genuitec.eclipse.sqlexplorer.actions.RefreshTypeNodeAction’:
 HandlerActivation(commandId=AUTOGEN:::com.genuitec.eclipse.sqlexplorer.mssql.procedureTypeNodeContribution/com.genuitec.eclipse.sqlexplorer.actions.RefreshTypeNodeAction,
 handler=ActionDelegateHandlerProxy(null,com.genuitec.eclipse.sqlexplorer.actions.RefreshTypeNodeAction),
 expression=WorkbenchWindowExpression(org.eclipse.ui.internal.WorkbenchWindow@15ccfb1),sourcePriority=16384)
 HandlerActivation(commandId=AUTOGEN:::com.genuitec.eclipse.sqlexplorer.mssql.procedureTypeNodeContribution/com.genuitec.eclipse.sqlexplorer.actions.RefreshTypeNodeAction,
 handler=ActionDelegateHandlerProxy(null,com.genuitec.eclipse.sqlexplorer.actions.RefreshTypeNodeAction),
 expression=WorkbenchWindowExpression(org.eclipse.ui.internal.WorkbenchWindow@15ccfb1),sourcePriority=16384)
 !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2007-08-09 09:46:19.344
 !MESSAGE Conflict for ‘AUTOGEN:::com.genuitec.eclipse.sqlexplorer.mysql.procedureNodeActions/com.genuitec.eclipse.sqlexplorer.mysql.actions.editNodeAction’:
 HandlerActivation(commandId=AUTOGEN:::com.genuitec.eclipse.sqlexplorer.mysql.procedureNodeActions/com.genuitec.eclipse.sqlexplorer.mysql.actions.editNodeAction,
 handler=ActionDelegateHandlerProxy(null,com.genuitec.eclipse.sqlexplorer.mysql.actions.EditNodeAction),
 expression=WorkbenchWindowExpression(org.eclipse.ui.internal.WorkbenchWindow@15ccfb1),sourcePriority=16384)
 HandlerActivation(commandId=AUTOGEN:::com.genuitec.eclipse.sqlexplorer.mysql.procedureNodeActions/com.genuitec.eclipse.sqlexplorer.mysql.actions.editNodeAction,
 handler=ActionDelegateHandlerProxy(null,com.genuitec.eclipse.sqlexplorer.mysql.actions.EditNodeAction),
 expression=WorkbenchWindowExpression(org.eclipse.ui.internal.WorkbenchWindow@15ccfb1),sourcePriority=16384)
 !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2007-08-09 09:46:19.344
 !MESSAGE Conflict for ‘AUTOGEN:::ValidationMenuAction/ValidationAction’:
 HandlerActivation(commandId=AUTOGEN:::ValidationMenuAction/ValidationAction,
 handler=ActionDelegateHandlerProxy(null,org.eclipse.wst.validation.internal.ui.ValidationMenuAction),
 expression=WorkbenchWindowExpression(org.eclipse.ui.internal.WorkbenchWindow@15ccfb1),sourcePriority=16384)
 HandlerActivation(commandId=AUTOGEN:::ValidationMenuAction/ValidationAction,
 handler=ActionDelegateHandlerProxy(null,org.eclipse.wst.validation.internal.ui.ValidationMenuAction),
 expression=WorkbenchWindowExpression(org.eclipse.ui.internal.WorkbenchWindow@15ccfb1),sourcePriority=16384)
 !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2007-08-09 09:46:19.344
 !MESSAGE Conflict for ‘AUTOGEN:::org.eclipse.jst.ws.internal.consumption.ui.wizard.client.genwsil/org.eclipse.jst.ws.consumption.ui.wsilimport’:
 HandlerActivation(commandId=AUTOGEN:::org.eclipse.jst.ws.internal.consumption.ui.wizard.client.genwsil/org.eclipse.jst.ws.consumption.ui.wsilimport,
 handler=ActionDelegateHandlerProxy(null,org.eclipse.wst.command.internal.env.ui.widgets.popup.DynamicPopupWizard),
 expression=WorkbenchWindowExpression(org.eclipse.ui.internal.WorkbenchWindow@15ccfb1),sourcePriority=16384)
 HandlerActivation(commandId=AUTOGEN:::org.eclipse.jst.ws.internal.consumption.ui.wizard.client.genwsil/org.eclipse.jst.ws.consumption.ui.wsilimport,
 handler=ActionDelegateHandlerProxy(null,org.eclipse.wst.command.internal.env.ui.widgets.popup.DynamicPopupWizard),
 expression=WorkbenchWindowExpression(org.eclipse.ui.internal.WorkbenchWindow@15ccfb1),sourcePriority=16384)
 !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2007-08-09 09:46:19.344
 !MESSAGE Conflict for ‘AUTOGEN:::com.genuitec.eclipse.sqlexplorer.mssql.procedureNodeActions/com.genuitec.eclipse.sqlexplorer.mssql.runFunctionAction’:
 HandlerActivation(commandId=AUTOGEN:::com.genuitec.eclipse.sqlexplorer.mssql.procedureNodeActions/com.genuitec.eclipse.sqlexplorer.mssql.runFunctionAction,
 handler=ActionDelegateHandlerProxy(null,com.genuitec.eclipse.sqlexplorer.mssql.actions.RunMssqlFunctionProcedureAction),
 expression=WorkbenchWindowExpression(org.eclipse.ui.internal.WorkbenchWindow@15ccfb1),sourcePriority=16384)
 HandlerActivation(commandId=AUTOGEN:::com.genuitec.eclipse.sqlexplorer.mssql.procedureNodeActions/com.genuitec.eclipse.sqlexplorer.mssql.runFunctionAction,
 handler=ActionDelegateHandlerProxy(null,com.genuitec.eclipse.sqlexplorer.mssql.actions.RunSybaseFunctionProcedureAction),
 expression=WorkbenchWindowExpression(org.eclipse.ui.internal.WorkbenchWindow@15ccfb1),sourcePriority=16384)
 !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2007-08-09 09:46:19.344
 !MESSAGE Conflict for ‘AUTOGEN:::com.genuitec.eclipse.sqlexplorer.mysql.triggerNodeActions/com.genuitec.eclipse.sqlexplorer.mysql.openTriggerAction’:
 HandlerActivation(commandId=AUTOGEN:::com.genuitec.eclipse.sqlexplorer.mysql.triggerNodeActions/com.genuitec.eclipse.sqlexplorer.mysql.openTriggerAction,
 handler=ActionDelegateHandlerProxy(null,com.genuitec.eclipse.sqlexplorer.mysql.actions.OpenTriggerAction),
 expression=WorkbenchWindowExpression(org.eclipse.ui.internal.WorkbenchWindow@15ccfb1),sourcePriority=16384)
 HandlerActivation(commandId=AUTOGEN:::com.genuitec.eclipse.sqlexplorer.mysql.triggerNodeActions/com.genuitec.eclipse.sqlexplorer.mysql.openTriggerAction,
 handler=ActionDelegateHandlerProxy(null,com.genuitec.eclipse.sqlexplorer.mysql.actions.OpenTriggerAction),
 expression=WorkbenchWindowExpression(org.eclipse.ui.internal.WorkbenchWindow@15ccfb1),sourcePriority=16384)
 !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2007-08-09 09:46:19.344
 !MESSAGE Conflict for ‘AUTOGEN:::com.genuitec.eclipse.sqlexplorer.mssql.triggerNodeActions/com.genuitec.eclipse.sqlexplorer.mssql.openTriggerAction’:
 HandlerActivation(commandId=AUTOGEN:::com.genuitec.eclipse.sqlexplorer.mssql.triggerNodeActions/com.genuitec.eclipse.sqlexplorer.mssql.openTriggerAction,
 handler=ActionDelegateHandlerProxy(null,com.genuitec.eclipse.sqlexplorer.mssql.actions.OpenTriggerAction),
 expression=WorkbenchWindowExpression(org.eclipse.ui.internal.WorkbenchWindow@15ccfb1),sourcePriority=16384)
 HandlerActivation(commandId=AUTOGEN:::com.genuitec.eclipse.sqlexplorer.mssql.triggerNodeActions/com.genuitec.eclipse.sqlexplorer.mssql.openTriggerAction,
 handler=ActionDelegateHandlerProxy(null,com.genuitec.eclipse.sqlexplorer.mssql.actions.OpenTriggerAction),
 expression=WorkbenchWindowExpression(org.eclipse.ui.internal.WorkbenchWindow@15ccfb1),sourcePriority=16384)
 !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2007-08-09 09:46:19.344
 !MESSAGE Conflict for ‘AUTOGEN:::com.genuitec.eclipse.sqlexplorer.mssql.procedureNodeActions/com.genuitec.eclipse.sqlexplorer.mssql.editProcedureAction’:
 HandlerActivation(commandId=AUTOGEN:::com.genuitec.eclipse.sqlexplorer.mssql.procedureNodeActions/com.genuitec.eclipse.sqlexplorer.mssql.editProcedureAction,
 handler=ActionDelegateHandlerProxy(null,com.genuitec.eclipse.sqlexplorer.mssql.actions.EditMssqlNodeAction),
 expression=WorkbenchWindowExpression(org.eclipse.ui.internal.WorkbenchWindow@15ccfb1),sourcePriority=16384)
 HandlerActivation(commandId=AUTOGEN:::com.genuitec.eclipse.sqlexplorer.mssql.procedureNodeActions/com.genuitec.eclipse.sqlexplorer.mssql.editProcedureAction,
 handler=ActionDelegateHandlerProxy(null,com.genuitec.eclipse.sqlexplorer.mssql.actions.EditMssqlNodeAction),
 expression=WorkbenchWindowExpression(org.eclipse.ui.internal.WorkbenchWindow@15ccfb1),sourcePriority=16384)
 !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2007-08-09 09:46:19.344
 !MESSAGE Conflict for ‘AUTOGEN:::com.genuitec.eclipse.sqlexplorer.mssql.procedureNodeActions/com.genuitec.eclipse.sqlexplorer.mssql.spHelpAction’:
 HandlerActivation(commandId=AUTOGEN:::com.genuitec.eclipse.sqlexplorer.mssql.procedureNodeActions/com.genuitec.eclipse.sqlexplorer.mssql.spHelpAction,
 handler=ActionDelegateHandlerProxy(null,com.genuitec.eclipse.sqlexplorer.mssql.actions.MssqlSpHelpAction),
 expression=WorkbenchWindowExpression(org.eclipse.ui.internal.WorkbenchWindow@15ccfb1),sourcePriority=16384)
 HandlerActivation(commandId=AUTOGEN:::com.genuitec.eclipse.sqlexplorer.mssql.procedureNodeActions/com.genuitec.eclipse.sqlexplorer.mssql.spHelpAction,
 handler=ActionDelegateHandlerProxy(null,com.genuitec.eclipse.sqlexplorer.mssql.actions.MssqlSpHelpAction),
 expression=WorkbenchWindowExpression(org.eclipse.ui.internal.WorkbenchWindow@15ccfb1),sourcePriority=16384)I suspect it has some relation to the issue. August 9, 2007 at 6:34 pm #273733
 John YesbergMemberJust upgraded to mysql-connector-java-5.0.7-bin.jar driver (from 3.0.16). Same behaviour, same entry in the log. John. August 14, 2007 at 11:52 am #273878
 Riyad KallaMemberJohn thanks for the heads up, something is going on and we will dig into it. August 22, 2007 at 3:40 am #274190
 jukefoxMemberHi, I just want to mention that I even could reproduce this error with MyEclipse 6.0 GA and Oracle 9 Thin Driver. But you should get the same result when testing with MySQL and MSSQL. 
 I hope there will be a bugfix update released quite soon:-)August 22, 2007 at 11:11 am #274246
 Riyad KallaMemberThis should be fixed in 6.0, we noticed that Edit Data for all DBs got dorked somehow. August 22, 2007 at 12:51 pm #274264
 jukefoxMemberSorry, but I have a fresh insatllation of 6.0 GA. Here are the details: *** Date: 
 Wednesday, August 22, 2007 7:45:50 PM CEST** System properties: 
 OS=WindowsXP
 OS version=5.1
 Java version=1.5.0_11*** MyEclipse details: 
 MyEclipse Enterprise Workbench
 Version: 6.0.0 GA
 Build id: 6.0.0-GA-200708*** Eclipse details: 
 MyEclipse Enterprise WorkbenchVersion: 6.0.0 GA 
 Build id: 6.0.0-GA-200708Eclipse Platform Version: 3.3.0.v20070612-_19UEkLEzwsdF9jSqQ-G 
 Build id: I20070625-1500Eclipse RCP Version: 3.3.0.v20070607-8y8eE8NEbsN3X_fjWS8HPNG 
 Build id: I20070625-1500Eclipse Java Development Tools Version: 3.3.0.v20070606-0010-7o7jCHEFpPoqQYvnXqejeR 
 Build id: I20070625-1500Eclipse Plug-in Development Environment Version: 3.3.0.v20070607-7N7M-DUUEF6Ez0H46IcCC 
 Build id: I20070625-1500Eclipse Project SDK Version: 3.3.0.v20070607-7M7J-BIolz-OcxWxvWAPSfLPqevO 
 Build id: I20070625-1500Eclipse Graphical Editing Framework Version: 3.3.0.v20070620 
 Build id: 20070620-1021Eclipse startup command=-os 
 win32
 -ws
 win32
 -arch
 x86
 -showsplash
 -launcher
 H:\MyEclipse 6.0\eclipse\eclipse.exe
 -name
 Eclipse
 –launcher.library
 H:\MyEclipse 6.0\eclipse\plugins\org.eclipse.equinox.launcher.win32.win32.x86_1.0.0.v20070523\eclipse_1017a.dll
 -startup
 H:\MyEclipse 6.0\eclipse\plugins\org.eclipse.equinox.launcher_1.0.0.v20070606.jar
 -exitdata
 b0c_6c
 -vm
 H:\MyEclipse 6.0\jre\bin\javaw.exeAnd that is what error log says: !SESSION 2007-08-22 19:44:07.440 ----------------------------------------------- eclipse.buildId=I20070625-1500 java.version=1.5.0_11 java.vendor=Sun Microsystems Inc. BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_DE Command-line arguments: -os win32 -ws win32 -arch x86 !ENTRY com.tikal.eclipse.updatemanager.quicksetup 4 4 2007-08-22 19:44:59.721 !MESSAGE Network connection problems encountered during search. !ENTRY com.genuitec.eclipse.sqlexplorer 4 4 2007-08-22 19:45:09.237 !MESSAGE Error opening edit view !STACK 0 java.lang.NullPointerException at java.util.Properties$LineReader.readLine(Unknown Source) at java.util.Properties.load(Unknown Source) at java.util.PropertyResourceBundle.<init>(Unknown Source) at com.sun.rowset.JdbcRowSetResourceBundle.<init>(Unknown Source) at com.sun.rowset.JdbcRowSetResourceBundle.getJdbcRowSetResourceBundle(Unknown Source) at com.sun.rowset.JdbcRowSetImpl.<init>(Unknown Source) at com.genuitec.eclipse.sqlexplorer.views.EditDataView$3.<init>(EditDataView.java:278) at com.genuitec.eclipse.sqlexplorer.views.EditDataView.getRowSet(EditDataView.java:278) at com.genuitec.eclipse.sqlexplorer.views.EditDataView$1.run(EditDataView.java:121) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at com.genuitec.eclipse.sqlexplorer.views.EditDataView.createEditArea(EditDataView.java:117) at com.genuitec.eclipse.sqlexplorer.actions.TableDirectEditInView.run(TableDirectEditInView.java:72) at org.eclipse.jface.action.Action.runWithEvent(Action.java:498) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:545) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:490) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:402) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3682) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3293) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:153) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:504) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:443) at org.eclipse.equinox.launcher.Main.run(Main.java:1169) at org.eclipse.equinox.launcher.Main.main(Main.java:1144)What could have gone wrong? August 22, 2007 at 1:43 pm #274279
 Riyad KallaMemberAre you trying to edit an empty table by chance? August 22, 2007 at 5:49 pm #274307
 Brian FernandesModeratorGuys, I just realized that this might be a locale issue. Can you try starting eclipse with an NL switch like so? eclipse.exe -nl en_ENPlease add any other command line switches you may need to the above. Let us know if that fixes the issue, we’ll have to work in a fix for this in the next release. Sorry for the inconvenience caused. HTH. August 22, 2007 at 9:00 pm #274328
 John YesbergMemberBrian, Starting 6.0GA with the locale didn’t solve the problem, but it seems to have made some differences to the error report (which now shows line numbers). John. !ENTRY com.genuitec.eclipse.sqlexplorer 4 4 2007-08-23 11:56:46.032 
 !MESSAGE Error opening edit view
 !STACK 0
 java.lang.NullPointerException
 at java.util.Properties$LineReader.readLine(Properties.java:365)
 at java.util.Properties.load(Properties.java:293)
 at java.util.PropertyResourceBundle.<init>(PropertyResourceBundle.java:96)
 at com.sun.rowset.JdbcRowSetResourceBundle.<init>(Unknown Source)
 at com.sun.rowset.JdbcRowSetResourceBundle.getJdbcRowSetResourceBundle(Unknown Source)
 at com.sun.rowset.JdbcRowSetImpl.<init>(Unknown Source)
 at com.genuitec.eclipse.sqlexplorer.views.EditDataView$3.<init>(EditDataView.java:278)
 at com.genuitec.eclipse.sqlexplorer.views.EditDataView.getRowSet(EditDataView.java:278)
 at com.genuitec.eclipse.sqlexplorer.views.EditDataView$1.run(EditDataView.java:121)
 at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67)
 at com.genuitec.eclipse.sqlexplorer.views.EditDataView.createEditArea(EditDataView.java:117)
 at com.genuitec.eclipse.sqlexplorer.actions.TableDirectEditInView.run(TableDirectEditInView.java:72)
 at org.eclipse.jface.action.Action.runWithEvent(Action.java:498)
 at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:545)
 at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:490)
 at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:402)
 at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
 at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938)
 at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3682)
 at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3293)
 at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389)
 at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353)
 at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219)
 at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466)
 at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289)
 at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461)
 at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
 at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106)
 at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:153)
 at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106)
 at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76)
 at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363)
 at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
 at java.lang.reflect.Method.invoke(Method.java:585)
 at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:504)
 at org.eclipse.equinox.launcher.Main.basicRun(Main.java:443)
 at org.eclipse.equinox.launcher.Main.run(Main.java:1169)*** Date: 
 Thursday, August 23, 2007 11:56:54 AM EST** System properties: 
 OS=WindowsXP
 OS version=5.1
 Java version=1.5.0_06*** MyEclipse details: 
 MyEclipse Enterprise Workbench
 Version: 6.0.0 GA
 Build id: 6.0.0-GA-200708*** Eclipse details: 
 MyEclipse Enterprise WorkbenchVersion: 6.0.0 GA 
 Build id: 6.0.0-GA-200708Eclipse Platform Version: 3.3.0.v20070612-_19UEkLEzwsdF9jSqQ-G 
 Build id: I20070625-1500Eclipse RCP Version: 3.3.0.v20070607-8y8eE8NEbsN3X_fjWS8HPNG 
 Build id: I20070625-1500Eclipse Java Development Tools Version: 3.3.0.v20070606-0010-7o7jCHEFpPoqQYvnXqejeR 
 Build id: I20070625-1500Eclipse Plug-in Development Environment Version: 3.3.0.v20070607-7N7M-DUUEF6Ez0H46IcCC 
 Build id: I20070625-1500Eclipse Project SDK Version: 3.3.0.v20070607-7M7J-BIolz-OcxWxvWAPSfLPqevO 
 Build id: I20070625-1500Eclipse Graphical Editing Framework Version: 3.3.0.v20070620 
 Build id: 20070620-1021Eclipse startup command=-os 
 win32
 -ws
 win32
 -arch
 x86
 -showsplash
 -launcher
 C:\Program Files\MyEclipse 6.0GA\eclipse\.\eclipse.exe
 -name
 Eclipse
 –launcher.library
 C:\Program Files\MyEclipse 6.0GA\eclipse\.\plugins\org.eclipse.equinox.launcher.win32.win32.x86_1.0.0.v20070523\eclipse_1017a.dll
 -startup
 C:\Program Files\MyEclipse 6.0GA\eclipse\.\plugins\org.eclipse.equinox.launcher_1.0.0.v20070606.jar
 -nl
 en_EN
 -vm
 C:\Program Files\Java\jdk1.5.0_06\bin\..\jre\bin\client\jvm.dll
- 
		AuthorPosts

