아래 질문에 또 다른 상황이 발생해서 질문드립니다.
Cursor에 담긴만큰
SimpleCursorAdapter 로 뭔가가 가져오긴 한것 같은데

Spinner에 뿌릴때 DATA값이 아무것도 없는 걸로 계속 출력되어지고 있습니다.
이건 뭐가 문제인가여


    SpinnerAdapter adapter=new SimpleCursorAdapter( this
                                            ,android.R.layout.simple_spinner_item
                                            ,cursor
                                            ,new String[] {ProviderSampler.Constants.TSA_MCL_NM}
                                            ,new int[] {R.id.customer });

이전소스 에서 _id값때문에 하나더 추가를 해봤습니다.


  SpinnerAdapter adapter=new SimpleCursorAdapter( this
                                            ,android.R.layout.simple_spinner_item
                                            ,cursor
                                            ,new String[] {ProviderSampler.Constants._ID,ProviderSampler.Constants.TSA_MCL_NM}
                                            ,new int[] {R.id.spinner_id ,R.id.customer
});

  이틀 동안 코피 터지는군여..