Aller au contenu

Photo

Object_ID


  • Veuillez vous connecter pour répondre
2 réponses à ce sujet

#1
nitewolf10

nitewolf10
  • Members
  • 1 messages
Can anyone tell me if there is a file containing the object id's or point to a list of them?

thanks

#2
CID-78

CID-78
  • Members
  • 1 124 messages
that's certainly a index in the database, so to get a list of them you need to know MSSQL syntax

#3
Sidrat2009

Sidrat2009
  • Members
  • 25 messages
This is using Access and a connection to the SQL database.



SELECT dbo_t_Item.NameStringID, dbo_t_StringText.Text AS Name, dbo_t_StringText_1.Text AS Description

FROM dbo_t_StringText AS dbo_t_StringText_1 INNER JOIN (dbo_t_StringText RIGHT JOIN dbo_t_Item ON dbo_t_StringText.StringID = dbo_t_Item.NameStringID) ON dbo_t_StringText_1.StringID = dbo_t_Item.DescriptionStringID;





Hope this helps.