29

私は今日、このウォークスルーに従ってRust のDiesel ORMを見てきましたが、うまくいきません。Timestamp

貨物.toml

[dependencies]
diesel = { version = "0.6.2", features = ["chrono"] }
diesel_codegen = { version = "0.6.2", default-features = false, features = ["nightly", "postgres"] }
dotenv = "0.8.0"
dotenv_macros = "0.8.0"

models.rs

#[derive(Queryable)]

pub struct Author {
    pub id: i32,
    pub first_name: String,
    pub last_name: String,
    pub email: String
}

pub struct Post {
    pub id: i32,
    pub author: Author,
    pub title: String,
    pub body: String,
    pub published: bool,
    pub created: Timestamp,
    pub updated: Timestamp
}

(タイプがあると読みましたdiesel::types::Timestamp

lib.rs

#![feature(custom_derive, custom_attribute, plugin)]
#![plugin(diesel_codegen, dotenv_macros)]

#[macro_use]
extern crate diesel;
extern crate dotenv;

pub mod schema;
pub mod models;

use diesel::prelude::*;
use diesel::types::Timestamp;
use diesel::pg::PgConnection;
use dotenv::dotenv;
use std::env;

pub fn establish_connection() -> PgConnection {
    dotenv().ok();

    let database_url = env::var("DATABASE_URL").
        expect("DATABASE_URL must be set");
    PgConnection::establish(&database_url).
        expect(&format!("Error connecting to {}", database_url))
}

しかし、これらは私がそれを使用しようとしたときに私が得るエラーです:

<diesel macros>:5:1: 5:71 note: in this expansion of table_body! (defined in <diesel macros>)
src/schema.rs:1:1: 1:40 note: in this expansion of table! (defined in <diesel macros>)
src/schema.rs:1:1: 1:40 note: in this expansion of infer_schema! (defined in src/lib.rs)
src/lib.rs:1:1: 1:1 help: run `rustc --explain E0412` to see a detailed explanation
src/lib.rs:1:1: 1:1 help: no candidates by the name of `Timestamptz` found in your project; maybe you misspelled the name or forgot to import an external crate?
src/lib.rs:1:1: 1:1 error: type name `Timestamptz` is undefined or not in scope [E0412]
src/lib.rs:1 #![feature(custom_derive, custom_attribute, plugin)]

...

<diesel macros>:38:1: 38:47 note: in this expansion of column! (defined in <diesel macros>)
<diesel macros>:5:1: 5:71 note: in this expansion of table_body! (defined in <diesel macros>)
src/schema.rs:1:1: 1:40 note: in this expansion of table! (defined in <diesel macros>)
src/schema.rs:1:1: 1:40 note: in this expansion of infer_schema! (defined in src/lib.rs)
src/lib.rs:1:1: 1:1 help: run `rustc --explain E0412` to see a detailed explanation
src/lib.rs:1:1: 1:1 help: no candidates by the name of `Timestamptz` found in your project; maybe you misspelled the name or forgot to import an external crate?
src/models.rs:16:18: 16:27 error: type name `Timestamp` is undefined or not in scope [E0412]
src/models.rs:16     pub created: Timestamp,
                              ^~~~~~~~~
src/models.rs:16:18: 16:27 help: run `rustc --explain E0412` to see a detailed explanation
src/models.rs:16:18: 16:27 help: you can import it into scope: `use diesel::types::Timestamp;`.
src/models.rs:17:18: 17:27 error: type name `Timestamp` is undefined or not in scope [E0412]
src/models.rs:17     pub updated: Timestamp
                              ^~~~~~~~~

最初のエラーのように見えますが、既にテーブルにある Postgresql 型を解釈する方法がわからないことTimestamptzが原因です。infer_schema2 つ目については、おそらくそのTimestamp型を明示的にインポートすれば、それを使用して構造体を作成できると思いましPostた。

ここで私が間違っていることは明らかですか?

余談ですが、私は Rust の初心者であり、Diesel はかなりの量のコード生成を使用するため、迷子になりがちですが、これは簡単に達成できるはずだと思いました。


編集

以前timestamp with time zoneはテーブルを作成していましたが、まだサポートされていないようです:

CREATE TABLE post (
    ...
    created timestamp with time zone NOT NULL,
    updated timestamp with time zone
)

編集2:

models.rsを次のように変更し、Timestamp未定義に関するエラーを取り除きました。#[derive(Queryable)]また、各構造体を派生させる必要があることにも気付きました。以下は正常にコンパイルされますが、以前のエラーがTimestamptz残ります。

use diesel::types::Timestamp;

#[derive(Queryable)]
pub struct Author {
    pub id: i32,
    pub first_name: String,
    pub last_name: String,
    pub email: String
}

#[derive(Queryable)]
pub struct Post {
    pub id: i32,
    pub author: Author,
    pub title: String,
    pub body: String,
    pub published: bool,
    pub created: Timestamp,
    pub updated: Timestamp
}
4

2 に答える 2

44

の型はすべて、diesel::sql_typesスキーマのさまざまな SQL データ型を表すマーカーです。独自の構造体では決して使用しないでください。必要なのはdiesel::deserialize::FromSql<diesel::sql_types::Timestamp, diesel::pg::Pg>(docs: FromSql, Timestamp, Pg) を実装する型です。その特性を実装する 2 つのタイプがあります。

1 つ目はstd::time::SystemTime、追加の依存関係は必要ありませんが、多くの機能はありません。

2つ目はchrono::NaiveDateTime。これはおそらくあなたが望むタイプです。それを使用するにはchrono、依存関係に追加し、Cargo.toml のディーゼルラインを変更して chrono 機能を含める必要があるため、次のようになります。diesel = { version = "0.7.0", features = ["postgres", "chrono"] }

(技術的には 3 番目のタイプがありdiesel::data_types::PgTimestampますが、構造体はデータベース内のタイムスタンプのリテラル表現にすぎないため、他のタイプは raw バイトについて心配する必要がないため、これはほぼ確実に必要なものではありません)

于 2016-08-17T11:10:31.773 に答える
0

ui からデータ型を確認してください

"src/models.rs:16:18: 16:27 ヘルプ: スコープにインポートできます: .src use diesel::types::Timestamp;/models.rs:17:18: 17:27 エラー: 型名Timestampが定義されていないか、スコープ内にありません [E0412] src/models.rs:17 pub 更新: タイムスタンプ "

おそらくタイムスタンプは単語を定義していません。

于 2016-07-30T20:29:57.563 に答える