4

Getting this error on trying to update an Oracle Connection suing Entity Framework from a ASP.Net MVC Web Application.

profesor79
  • 9,213
  • 3
  • 31
  • 52
kolexinfos
  • 1,030
  • 1
  • 21
  • 42

2 Answers2

0

SQL Server Developer: Edit this config file: C:\Program Files\sqldeveloper 3\sqldeveloper\bin\sqldeveloper.conf then add this line anywhere in the file:

    AddVMOption -Duser.timezone="+02:00" (My time zone)

Oracle Data Modeler Edit this config file: C:\Program Files\datamodeler 3\datamodeler\bin\datamodeler.conf, then add this line anywhere in the file:

    AddVMOption -Duser.timezone="+02:00" (My time zone)

source here

profesor79
  • 9,213
  • 3
  • 31
  • 52
0

According to this link, you need to edit the config file that was installed. it will either be C:\Program Files\sqldeveloper 3\sqldeveloper\bin\sqldeveloper.conf or C:\Program Files\datamodeler 3\datamodeler\bin\datamodeler.conf

And add the following line:

    AddVMOption -Duser.timezone="+02:00"

Modified for your timezone, of course.

  • 4
    I am trying to do Entity Framework database-first from Visual Studio and not connecting from SQL Developer – kolexinfos Feb 23 '16 at 18:58