Book a Demo

Author Topic: Why does this query fail?  (Read 4013 times)

Richard Freggi

  • EA User
  • **
  • Posts: 498
  • Karma: +18/-7
    • View Profile
Why does this query fail?
« on: April 02, 2020, 02:08:44 am »
In query editor:
Code: [Select]
SELECT Version from t_object
Microsoft OLE DB Provider etc. etc.
Column unknown VERSION

Sparx 13.10, on Firebird DB on my own PC (integrity check and index update all OK)

Richard Freggi

  • EA User
  • **
  • Posts: 498
  • Karma: +18/-7
    • View Profile
Re: Why does this query fail?
« Reply #1 on: April 02, 2020, 02:12:53 am »
DAAAAMN
Version is a reserved word, this works

Code: [Select]
SELECT [Version] from t_object
Can't believe I spent 1/2 hour on this..... :(

Geert Bellekens

  • EA Guru
  • *****
  • Posts: 13523
  • Karma: +574/-33
  • Make EA work for YOU!
    • View Profile
    • Enterprise Architect Consultant and Value Added Reseller
Re: Why does this query fail?
« Reply #2 on: April 02, 2020, 02:13:32 am »
DAAAAMN
Version is a reserved word, this works

Code: [Select]
SELECT [Version] from t_object
Can't believe I spent 1/2 hour on this..... :(
I was just gonna reply with the same answer :)

Geert

Richard Freggi

  • EA User
  • **
  • Posts: 498
  • Karma: +18/-7
    • View Profile
Re: Why does this query fail?
« Reply #3 on: April 02, 2020, 02:36:23 am »
Beat you to it this one time Geert... one time only