Hi Kyle,
We just released Nintex Forms 2.8 (SP2013) and 1.10 (SP2010) which has a lot of great enhancements to the SQL Request and Web Request controls. Included in this release is the ability to pass values into a query from other controls.
The release notes and downloads are available here. Please do let me know how you go with our latest release.
Cheers,
Euan
Awesome! I'm installing in my test environment now so I can try it out. Thanks!
This is just what I was trying to do using version 1.9 (SP 2010) and failing completely. So I was very happy to read that v 1.10 was released and immediately downloaded and installed it. However, I'm still not able to get this to work. For example when I try to run this query:
SELECT LAST_FIRST_NAME, UID FROM EmployeeData WHERE UID = UsersNameControl
I get this error:
Test Result
Invalid column name 'UsersNameControl'.
so it appears that the UsersNameControl is being interpreted as a database column and not text. Is there something that I should bhe doing here that I'm not?
Thanks,
Bruce
try SELECT LAST_FIRST_NAME, UID FROM EmployeeData WHERE UID = "UsersNameControl"
Yup, that was it. Thanks. -Bruce