Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
6k views

Dynamically set the DefaultValue of a ParameterBinding in a DataFormWebPart

In my custom aspx page in WSS I am using a DataFormWebPart with an xsl file to render some data. In order to pass values to the xsl I use parameter bindings. Specifically, I need to pass in the server ...
3
votes
3answers
576 views

Mysqli parameter binding issue

I need an extra set of eyes on this one. Any help will be greatly appreciated. This is a very simple search query, but for whatever reason I cannot find the bug. Well, I know where the bug is. I just ...
0
votes
2answers
260 views

Parameter binding fails where concatenation works

I am trying to execute the following sql from php using pdo: SELECT * FROM my_table WHERE name=?. When I do this: $sql = 'SELECT * FROM my__table WHERE name=?' ; $stmt = ...