File currentDir = null;
if (Build.VERSION.SDK_INT >= 19) {
currentDir = new File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOCUMENTS));
}else{
currentDir = new File(Environment.getExternalStorageDirectory() + "/Documents");
}
此代码段未更新我的数据库。我正在使用XAMPP。这到底是什么问题?
我的浏览器也显示以下错误 “ mysql_connect():不推荐使用mysql扩展,将来会删除它:在第7行的D:\ XAMPP \ Software \ htdocs \ learning \ index.php中使用mysqli或PDO ”< / p>
答案 0 :(得分:-1)
首先在新的PHP版本中使用mysql_ *而不是使用mysqli或PDO;并且您不更新数据库,使用mysql_query或mysqli_query。