Sending an array of values to Oracle procedure to use in WHERE IN clause

One way could be to use a VARRAY for the PARAM_THAT_WILL_BE _USED_INSIDE_WHERE_IN parameter and use it as described here I’m not sure, though, how to call it from c#. Another way is to use varchar2 with a csv as you stated in your question but without dynamic sql, like this: CREATE PROCEDURE MY_TEST_PROC( CUR OUT … Read more

AutoCompleteTextView backed by CursorLoader

Basically, androids autocomplete textview is not very powerful, when I have to deal with bigger amounts of data, what I do is, i keep a text change listener to the edit text for search, and then whenever something is changed on the edit text, it queries database. If this might help someone, placing an edittext … Read more