PostgreSQL
 sql >> Cơ Sở Dữ Liệu >  >> RDS >> PostgreSQL

Rails 4 custom 404 gây ra lỗi kết nối postgresql trên Heroku

Đây là mã bộ điều khiển chức năng:

class ErrorsController < ApplicationController
  def not_found
    respond_to do |format|
      format.any(:htm, :html, :xls, :xlsx) { render :status => 404, :layout => "error_frame", :formats => [:html] }
      format.all { render nothing: true, status: 404 }
    end
  end

  def unacceptable
    respond_to do |format|
      format.html { render :status => 422, :layout => "error_frame" }
      format.all { render nothing: true, status: 422 }
    end
  end

  def internal_error
    respond_to do |format|
      format.html { render :layout => false, :status => 500 }
      format.all { render nothing: true, status: 500}
    end
  end
end



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Kiểm tra xem cột có tồn tại hay không khi có nhiều bảng có cùng tên trong các lược đồ khác nhau (PSQL 8.2)

  2. Khôi phục db PostgreSQL từ bản sao lưu mà không có vấn đề ràng buộc khóa ngoại

  3. Làm mới chế độ xem cụ thể hóa không bao gồm cột đã thêm

  4. Cách ghi các truy vấn trong PostgreSQL

  5. Cài đặt PostgreSQL trên Docker