how to use where clause???????

What is the API for fetching data from back endless using where clause…

https://backendless.com/documentation/data/rest/data_search_and_query.htm

Find all Person by name:

The where parameter contains a URL encoded value of “name = ‘Bob’”;
curl
-H application-id:application-id-value-from-console
-H secret-key:secret-key-value-from-console
-X GET
-v https://api.backendless.com/v1/data/Person?where=name%20%3D%20’Bob’

I have checked out your first link…and implemented the same in my project without any error but the project is not running…it says…UNFORTUNATELY PROJECT HAS STOPPED

I am not sure what are you mean by “my project”.

what language and IDE do you use?
provide code or project that you use.

I am working on Android. And “my project” means my android application project.

For android application I suggest to use this doc https://backendless.com/documentation/data/android/data_search_and_query.htm and download sdk for android https://backendless.com/downloads/

Hello Sergey Kukurudzyak, i used this doc but i am getting the following exception…
BackendlessException{ code: ‘Internal client exception’, message: ‘null’ }

Make sure you invoke the asynchronous API.

I didn’t invoke Asynchronous API.

String whereClause=“name=‘Sandeep Kumar’”;
BackendlessDataQuery dataQuery=new BackendlessDataQuery(whereClause);
dataQuery.setWhereClause(whereClause);
BackendlessCollection<ImageTable> friends = Backendless.Data.of( ImageTable.class ).find( dataQuery );
for(ImageTable imageTable:friends.getData())
{
Log.e(“imageTable”,imageTable.getEmail()+"");
}

how to convert it into Asynchronous API.

https://backendless.com/documentation/data/android/data_sync_and_async_calls.htm

thank you sir…