安卓调用SQL sever数据库中的图片

问题遇到的现象和发生背景

安卓已经连接好了SQL sever数据库,可以查询到指定字段,在数据库里用本地图片的存储路径存储的图片,想知道安卓那边如何调用

问题相关代码,请勿粘贴截图 public String querySql_phone(String phone){
    String result = "";
    this.phone=phone;
    try{
        Class.forName(driverName); //jdk版本6.0以上可以省略这句话
        con= DriverManager.getConnection(dbURL,userName,userPwd);
        String sql="select * from Customer where Phone ="+phone;
                 Statement st=con.createStatement();
        ResultSet rs=st.executeQuery(sql);
        while(rs.next()){
            if(rs.getString("Phone").equals(phone)){
                result="1";               
            }
        }
        rs.close();
        st.close();
        con.close();
        //  System.out.println("连接数据库成功");
    }
    catch(Exception e){
        e.printStackTrace();
    }
   return result;
}
运行结果及报错内容

我的解答思路和尝试过的方法

我想要达到的结果

可以存储调用和显示