Hi All,
I wanted to see if anyone could help identify a solution to an issue I'm having. I have a scene for an Out of Town scoreboard that currently takes the name from the data feed and shows it on the graphic. Some names don't appear as we'd like them to (example: UNC appears as North Carolina, when we'd prefer for it to show N. Carolina). Ideally, I'd want this to be achieved through a SQL query in order to keep us from updating the fields twice (once to get the game, once to change the names). Below is the query that I'm using:
SELECT * FROM names WHERE [NCAA_NAME]="%game1home%"
"names" is the table I'm using, "NCAA_NAME" is a column in the "names" table that has all of the names displayed from the out of town scores feed and "game1home" is the datalinq key I've setup to reference what the name of the team is as it appears from the data feed.
I have a different SQL query that works great for datalinq keys that are used for statcrew. Below is the query for that:
SELECT * FROM volleyball_all WHERE [Statcrew_Code]="%stat1%" AND [Cat]="%cat1%"
"volleyball_all" is the table, "Statcrew_Code" is all of the datalinq keys we use and "Cat" is where in the XML tree we'll find the stat (example: kills is in attack>k). This query is successful, so I'm at a loss for why the out of town scores one isn't working.
Any help is greatly appreciated.
Thank you,
Rob