4
4
5
5
mod entity;
6
6
7
+ use anyhow:: { anyhow, Result } ;
7
8
use std:: {
8
9
collections:: BTreeMap ,
9
10
sync:: { Arc , Mutex } ,
10
11
} ;
11
12
12
13
use gluesql:: { memory_storage:: MemoryStorage , prelude:: Glue } ;
13
14
use sea_orm:: {
14
- ActiveValue :: Set , Database , DbBackend , DbErr , EntityTrait , ProxyDatabaseTrait , ProxyExecResult ,
15
- ProxyRow , Statement ,
15
+ ActiveModelTrait , ActiveValue :: Set , Database , DbBackend , DbErr , EntityTrait ,
16
+ ProxyDatabaseTrait , ProxyExecResult , ProxyRow , Statement ,
16
17
} ;
17
18
18
19
use entity:: post:: { ActiveModel , Entity } ;
@@ -99,6 +100,12 @@ impl ProxyDatabaseTrait for ProxyDb {
99
100
val. unwrap_or ( 0 ) . to_string ( ) ,
100
101
false ,
101
102
) ,
103
+ sea_orm:: Value :: Uuid ( val) => {
104
+ Value :: SingleQuotedString ( match val {
105
+ Some ( val) => val. to_string ( ) ,
106
+ None => "" . to_string ( ) ,
107
+ } )
108
+ }
102
109
_ => todo ! ( ) ,
103
110
} ;
104
111
}
@@ -132,14 +139,14 @@ impl ProxyDatabaseTrait for ProxyDb {
132
139
}
133
140
134
141
#[ async_std:: main]
135
- async fn main ( ) {
142
+ async fn main ( ) -> Result < ( ) > {
136
143
let mem = MemoryStorage :: default ( ) ;
137
144
let mut glue = Glue :: new ( mem) ;
138
145
139
146
glue. execute (
140
147
r#"
141
148
CREATE TABLE IF NOT EXISTS posts (
142
- id INTEGER PRIMARY KEY,
149
+ id UUID PRIMARY KEY,
143
150
title TEXT NOT NULL,
144
151
text TEXT NOT NULL
145
152
)
@@ -160,32 +167,41 @@ async fn main() {
160
167
println ! ( "Initialized" ) ;
161
168
162
169
let data = ActiveModel {
163
- id : Set ( 11 ) ,
164
170
title : Set ( "Homo" . to_owned ( ) ) ,
165
171
text : Set ( "いいよ、来いよ" . to_owned ( ) ) ,
172
+ ..Default :: default ( )
166
173
} ;
167
- Entity :: insert ( data) . exec ( & db) . await . unwrap ( ) ;
174
+
175
+ println ! ( "data: {:?}" , data) ;
176
+ let ret = data. insert ( & db) . await . map_err ( |err| anyhow ! ( "{:?}" , err) ) ?;
177
+ println ! ( "ret: {:?}" , ret) ;
178
+
168
179
let data = ActiveModel {
169
- id : Set ( 45 ) ,
170
180
title : Set ( "Homo" . to_owned ( ) ) ,
171
181
text : Set ( "そうだよ" . to_owned ( ) ) ,
182
+ ..Default :: default ( )
172
183
} ;
173
- Entity :: insert ( data) . exec ( & db) . await . unwrap ( ) ;
184
+ let ret = data. insert ( & db) . await . map_err ( |err| anyhow ! ( "{:?}" , err) ) ?;
185
+ println ! ( "ret: {:?}" , ret) ;
186
+
174
187
let data = ActiveModel {
175
- id : Set ( 14 ) ,
176
188
title : Set ( "Homo" . to_owned ( ) ) ,
177
189
text : Set ( "悔い改めて" . to_owned ( ) ) ,
190
+ ..Default :: default ( )
178
191
} ;
179
- Entity :: insert ( data) . exec ( & db) . await . unwrap ( ) ;
192
+ let ret = data. insert ( & db) . await . map_err ( |err| anyhow ! ( "{:?}" , err) ) ?;
193
+ println ! ( "ret: {:?}" , ret) ;
180
194
181
195
let list = Entity :: find ( ) . all ( & db) . await . unwrap ( ) . to_vec ( ) ;
182
196
println ! ( "Result: {:?}" , list) ;
197
+
198
+ Ok ( ( ) )
183
199
}
184
200
185
201
#[ cfg( test) ]
186
202
mod tests {
187
203
#[ smol_potat:: test]
188
204
async fn try_run ( ) {
189
- crate :: main ( )
205
+ crate :: main ( ) . unwrap ( ) ;
190
206
}
191
207
}
0 commit comments