Click here to Skip to main content
15,881,139 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Dear all I am using access 2002 and created one view

while using query below my grid is showing only expr1000

removing 'AND' i also tried ,(comma)

can someone help me out , iam new to programing

C#
objClass1vrb.objds.Clear();
            string qrfinal = "select Publicationname AND Authorname from Author where Publicationname AND Authorname='" + compublisher.SelectedItem + "'AND'" + comauthor.SelectedItem + "'";


            objClass1vrb.objds = new DataSet();
            objClass1vrb.objds = objclassfunhelp.Retdataset(qrfinal);
            dataGridView1.DataSource = objClass1vrb.objds.Tables[0];
Posted

1 solution

"Publicationname AND Authorname": that is a Boolean value, surely not what you want to get.
Guess that you want to see both values, use a comma in between, and in your WHERE clause test two conditions which are linked with AND.
SQL
Select a, b 
From aTable
Where a='valueOfA' AND b='valueOfB'
 
Share this answer
 
Comments
Member 8893861 5-Oct-12 3:24am    
thank u Bernhard

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900