MSSQL removed from maker?

I just updated to 8.3.1 and my ms sql connections failed, when i hover over the error it shows that mssql is not supported in maker? Why the change, that curve balled all of my projects!

It just isn't pre-installed for you, I think. Go get the MS SQL driver module and install it.

Or you could use a better database like postgres and not be locked into proprietary licensing for drivers...

2 Likes

that is also not supported in maker :frowning:

I’ll submit a pic

Hmm, the module hook for all of these says they should still be compatible:

  @Override
  public boolean isMakerEditionCompatible() {
    return true;
  }

My mistake, i updated to 8.3.0 and it wasn’t working.

I am using docker so I deleted it and updated to 8.3.1 and it works :person_shrugging:

Thanks!

1 Like

One last question, i see a lot of modules that are not support but it wont let me remove them, is that a bug or am I doing something else wrong?

I think because you are using Docker you have to either disable them via configuration (GATEWAY_MODULES_ENABLED env var) or create a derived image without them.

Thanks, I was already using that and the ones I have enabled show up as active and the rest show up as FAULTED. I also updated the modules names I.E.

GATEWAY_MODULES_ENABLED=alarm-notification

is now

GATEWAY_MODULES_ENABLED=com.inductiveautomation.alarm-notification

I’ll keep poking around.