3
3
4
4
namespace App \Http \Controller ;
5
5
6
- use App \Model \Entity \Count ;
6
+ use App \Model \Entity \Count2 ;
7
+ use App \Model \Entity \Desc ;
7
8
use App \Model \Entity \User ;
8
9
use Exception ;
10
+ use ReflectionException ;
11
+ use Swoft \Bean \Exception \ContainerException ;
9
12
use Swoft \Db \DB ;
13
+ use Swoft \Db \Exception \DbException ;
10
14
use Swoft \Http \Server \Annotation \Mapping \Controller ;
11
15
use Swoft \Http \Server \Annotation \Mapping \RequestMapping ;
12
16
use Throwable ;
@@ -61,15 +65,18 @@ public function modelDb(): array
61
65
$ this ->insertId2 ();
62
66
$ result = User::db ('test2 ' )->count ('id ' );
63
67
68
+ $ desc = $ this ->desc ();
64
69
sgo (function () {
65
70
$ id = $ this ->getId ();
66
71
User::find ($ id )->toArray ();
67
72
68
73
$ this ->insertId2 ();
69
74
User::db ('test2 ' )->count ('id ' );
75
+
76
+ $ this ->desc ();
70
77
});
71
78
72
- return [$ user , $ result ];
79
+ return [$ user , $ result, $ desc ];
73
80
}
74
81
75
82
/**
@@ -115,6 +122,7 @@ public function queryDb(): array
115
122
116
123
$ count = DB ::table ('user ' )->db ('test2 ' )->count ();
117
124
125
+ $ desc = $ this ->desc ();
118
126
sgo (function () {
119
127
$ id = $ this ->getId ();
120
128
@@ -123,9 +131,11 @@ public function queryDb(): array
123
131
$ this ->insertId2 ();
124
132
125
133
DB ::table ('user ' )->db ('test2 ' )->count ();
134
+
135
+ $ this ->desc ();
126
136
});
127
137
128
- return [$ user , $ count ];
138
+ return [$ user , $ count, $ desc ];
129
139
}
130
140
131
141
/**
@@ -166,14 +176,18 @@ public function dbDb(): array
166
176
167
177
$ result = DB ::db ('test2 ' )->selectOne ('select * from user limit 1 ' );
168
178
179
+ $ desc = $ this ->desc ();
180
+
169
181
sgo (function () {
170
182
$ id = $ this ->getId ();
171
183
User::find ($ id )->toArray ();
172
184
173
185
DB ::db ('test2 ' )->selectOne ('select * from user limit 1 ' );
186
+
187
+ $ this ->desc ();
174
188
});
175
189
176
- return [$ user , $ result ];
190
+ return [$ user , $ result, $ desc ];
177
191
}
178
192
179
193
/**
@@ -184,7 +198,7 @@ public function dbDb(): array
184
198
*/
185
199
public function select (): array
186
200
{
187
- $ count = new Count ();
201
+ $ count = new Count2 ();
188
202
$ count ->setUserId (mt_rand (1 , 100 ));
189
203
$ count ->setAttributes ('attr ' );
190
204
$ count ->setCreateTime (time ());
@@ -194,6 +208,12 @@ public function select(): array
194
208
return [$ result , $ count ->getId ()];
195
209
}
196
210
211
+ /**
212
+ * @return bool
213
+ * @throws ContainerException
214
+ * @throws DbException
215
+ * @throws ReflectionException
216
+ */
197
217
public function insertId2 (): bool
198
218
{
199
219
$ result = User::db ('test2 ' )->insert ([
@@ -209,6 +229,20 @@ public function insertId2(): bool
209
229
return $ result ;
210
230
}
211
231
232
+ /**
233
+ * @throws ReflectionException
234
+ * @throws ContainerException
235
+ * @throws DbException
236
+ */
237
+ public function desc (): array
238
+ {
239
+ $ desc = new Desc ();
240
+ $ desc ->setDesc ("desc " );
241
+ $ desc ->save ();
242
+
243
+ return Desc::find ($ desc ->getId ())->toArray ();
244
+ }
245
+
212
246
/**
213
247
* @return int
214
248
* @throws Throwable
0 commit comments