Book a Demo

Author Topic: Is there a sql Query to get End points of a connec  (Read 2975 times)

Michael co

  • EA User
  • **
  • Posts: 60
  • Karma: +0/-0
    • View Profile
Is there a sql Query to get End points of a connec
« on: August 02, 2013, 09:34:16 pm »
 Is there a sql Query to get End points of a connection between to elements ?

.M

Geert Bellekens

  • EA Guru
  • *****
  • Posts: 13523
  • Karma: +574/-33
  • Make EA work for YOU!
    • View Profile
    • Enterprise Architect Consultant and Value Added Reseller
Re: Is there a sql Query to get End points of a co
« Reply #1 on: August 02, 2013, 10:28:07 pm »
Yes, I (and others) have posted a few on the forum here.

Try the top left search button with keywords "SQL" and "Search"

Geert

qwerty

  • EA Guru
  • *****
  • Posts: 13584
  • Karma: +397/-301
  • I'm no guru at all
    • View Profile
Re: Is there a sql Query to get End points of a co
« Reply #2 on: August 02, 2013, 11:33:15 pm »
To make it short:
Code: [Select]
SELECT * FROM t_connector WHERE start_object_id = ... AND end_object_id = ...
q.

Michael co

  • EA User
  • **
  • Posts: 60
  • Karma: +0/-0
    • View Profile
Re: Is there a sql Query to get End points of a co
« Reply #3 on: August 03, 2013, 12:27:16 am »
Thanx
I got it  :)