我正在开发一个宁静的Web服务中的搜索功能,从代码我将搜索字符串参数传递给一个方法。我从数据库获取匹配的字符串响应,现在如何验证输入搜索字符串是否存在来自数据库
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="10dp"
android:layout_above="@+id/linearButtonLayout"
android:layout_marginBottom="10dp"
android:layout_marginStart="10dp"
android:layout_marginEnd="10dp"
card_view:cardCornerRadius="5dp"
card_view:cardBackgroundColor="#FFFFFF"
card_view:cardElevation="7dp">
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="12dp" >
<TextView
android:id="@+id/test"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/big_string"/>
</RelativeLayout>
</ScrollView>
</android.support.v7.widget.CardView>
<LinearLayout
android:id="@+id/linearButtonLayout"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginBottom="10dp"
android:layout_width="match_parent"
android:layout_alignParentBottom="true"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="center|bottom">
<Button
android:id="@+id/button1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Ticket"
android:backgroundTint="#F44336"
android:textColor="#FFFFFF"/>
<Button
android:id="@+id/button2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Contratti"
android:backgroundTint="#F44336"
android:textColor="#FFFFFF"/>
<Button
android:id="@+id/button3"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Contatti"
android:backgroundTint="#F44336"
android:textColor="#FFFFFF"/>
</LinearLayout>
</RelativeLayout>
答案 0 :(得分:0)
你的sql应该是这样的。
string sql = string.Format(@"select first_name, last_name from member_master where first_name like '" + @prefix + "%'");