Question

Photo of Dave Schuster

0

Table name/reserved keyword

Just noticed that one of the table names in Rock (Group) is a reserved keyword word in SQL server.  Just wondering if that is going to be a future update?
 

  • Photo of David Leigh

    0

    Dave,

    It's unfortunate, but very unlikely that this will be renamed anytime soon as it would probably break a lot of existing SQL that is used to access the database directly.
    As you may already be aware, you can get around this problem by enclosing the table name in brackets (ie. "SELECT * FROM [Group]")

    Hope this helps!