i know in sql query one can use count function to return the number of rows affected. I need to make a decision on the code behind file using the value returned by my sql select statement.
<asp:sqldatasource ID="Sqldatasource1" runat="server"
ConnectionString="<%$ ConnectionStrings:CUSTOMERConnectionString %>"
SelectCommand=
"SELECT COUNT O.siren, O.siret, O.sap_code, CLIENT.display_name, CLIENT.departement, STATUS.status_lib_fr, PERSONNEL.dbo.EMPLOYES.display, CLIENT.client_id
FROM ORGANIZATION AS O INNER JOIN CLIENT ON O.client_id = CLIENT.client_id
WHERE (O.siren = @value) OR (O.siret = @value) OR (O.sap_code = @value) OR (O.name1 LIKE '%' + @value + '%') OR (O.name2 LIKE '%' + @value + '%') OR (O.name_other LIKE '%' + @value + '%') OR (O.name_short LIKE '%' + @value + '%') OR (O.name_long LIKE '%' + @value + '%')" >
<SelectParameters>
<asp:ControlParameter ControlID="TxtValue" Name="value" PropertyName="Text"
Type="String" />
</SelectParameters>
</asp:sqldatasource>
<asp:TextBox ID="TxtValue" runat="server" Width="164px"/>
and so if the values returned by the select command is zero then i need to perform another set of operation in the code behind. but how do one access this value? or is there any other way to determine if the select stmt returned any value or not? thanks!