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

デフォルトで実行されているTravisCIのサービスを停止するにはどうすればよいですか?

    上記の/etc/init.d/ ...を使用していることがわかります より信頼性が高くなります。 sudo service ...を使用する必要があるという警告がいくつかあります。 しかし、私はそれらで成功しませんでした。これが私が今実行しているものです:

    language: android
    
    jdk:
      - oraclejdk7
      - openjdk7
    
    android:
      components:
    
        # All the build system components should be at the latest version
        - tools
        - platform-tools
        - build-tools-21.1.1
        - android-19
    
        # The libraries we can't get from Maven Central or similar
        - extra-android-support
    
    
    notifications:
      email: true
    
    before_script:
    
      # Disable services enabled by default
      # http://docs.travis-ci.com/user/database-setup/#MySQL
      - sudo /etc/init.d/mysql stop
      - sudo /etc/init.d/postgresql stop
      # The following did not work reliable
      # - sudo service mysql stop
      # - sudo service postgresql stop
    
      # Ensure Gradle wrapper is executable
      - chmod +x gradlew
    
      # Ensure signing configuration is present
      - mv app/gradle.properties.example app/gradle.properties
    
    script:
      - ./gradlew clean assembleDebug
    


    1. PostgreSQL-テーブル名としての動的な値

    2. データベースの結果を配列に変換する

    3. MySQL:=true対BOOLEANではtrue。いつ使用することをお勧めしますか?そして、どちらがベンダーに依存していませんか?

    4. QUOTENAME関数を使用した動的ピボットテーブルの作成