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