创建数据库
Future<String> createDatabase() async { //获取数据库基本路径 var databasePath = await getDatabasesPath(); //创建数据的表名 return join(databasePath, dbName); }