sql >> データベース >  >> RDS >> Mysql

mysqlデータベースをDartに接続する方法は?

    SQLJocky を使用できます MySQLに接続します。追加

    dependencies:
      sqljocky: 0.0.4
    

    pubspec.yamlパブインストールを実行します 。これで、このようにMySQLに接続できます

    var cnx = new Connection();
    cnx.connect(username, password, dbName, port, hostname).then((nothing) {
        // Do something with the connection
        cnx.query("show tables").then((Results results) {
        print("tables");
        for (List row in results) {
          print(row);
        }
      });
    });
    


    1. フィールドコンテンツの末尾の空のスペースを削除する

    2. sqlite(android)でのアクセント付き検索

    3. アレイをデータベースに挿入できません

    4. SQLPlus-PL/SQLブロックから複数のファイルへのスプーリング