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

đặc điểm `diesel ::Expression` không được triển khai cho` bigdecimal ::BigDecimal`

Diesel sử dụng các tính năng của Cargo để chọn tham gia vào chức năng nâng cao.

Tôi chưa tìm thấy trang tài liệu rõ ràng về những thứ này, nhưng chúng được liệt kê trong Cargo.toml:

[features]
default = ["with-deprecated", "32-column-tables"]
extras = ["chrono", "serde_json", "uuid", "deprecated-time", "network-address", "numeric", "r2d2"]
unstable = ["diesel_derives/nightly"]
large-tables = ["32-column-tables"]
huge-tables = ["64-column-tables"]
x32-column-tables = ["32-column-tables"]
32-column-tables = []
x64-column-tables = ["64-column-tables"]
64-column-tables = ["32-column-tables"]
x128-column-tables = ["128-column-tables"]
128-column-tables = ["64-column-tables"]
postgres = ["pq-sys", "bitflags", "diesel_derives/postgres"]
sqlite = ["libsqlite3-sys", "diesel_derives/sqlite"]
mysql = ["mysqlclient-sys", "url", "diesel_derives/mysql"]
with-deprecated = []
deprecated-time = ["time"]
network-address = ["ipnetwork", "libc"]
numeric = ["num-bigint", "bigdecimal", "num-traits", "num-integer"]

Bạn cần bật số và đảm bảo bạn sử dụng phiên bản bigdecimal tương thích với Diesel:

[dependencies]
diesel = { version = "1.4.2", features = ["numeric"] }
bigdecimal = "0.0.14"

Và mã biên dịch:

#[macro_use]
extern crate diesel;

use crate::schema::threads;
use bigdecimal::BigDecimal;

mod schema {
    table! {
        threads (id) {
            id -> Int4,
            bounty -> Numeric,
        }
    }
}

#[derive(Debug, Insertable)]
#[table_name = "threads"]
pub struct InsertableThread {
    pub bounty: BigDecimal,
}

Xem thêm:

  • Tại sao một đặc điểm không được triển khai cho một loại đã được triển khai rõ ràng?


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Làm thế nào để làm tròn số trung bình đến 2 chữ số thập phân trong PostgreSQL?

  2. Cập nhật Postgresql với tham gia

  3. Cách cấu hình PostgreSQL Sharding với ClusterControl

  4. Sử dụng các hàm cửa sổ trong một câu lệnh cập nhật

  5. Rails tự động gán id đã tồn tại