This repository has been archived by the owner on Jun 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·390 lines (340 loc) · 16.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>XORM - 官方博客</title>
<meta name="keywords" content="golang,orm,xorm"/>
<meta name="description" content="Xorm 是一个简单而强大的Go语言ORM框架"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="/static/css/style.css"/>
<link rel="stylesheet" href="/static/css/prism.css"/>
<script src="/static/js/jquery-2.1.4.min.js"></script>
<script type="text/javascript">var postType = "index";</script>
</head>
<body>
<aside class="cover index" style="background: url('/static/media/cover.jpg') center/cover no-repeat fixed">
<div class="profile">
<a id="avatar-link" title="link to homepage" href="/">
<img src="/static/media/author.png" alt="pugo-robot" class="avatar">
<h1 id="profile-title">XORM</h1>
</a>
<hr class="divider long">
<p class="bio">
官方博客<br/>Xorm 是一个简单而强大的Go语言ORM框架
</p>
<hr class="divider short">
<div class="navigation">
<ul class="nav">
<li role="presentation" class="active">
<a href="/">文章
</a>
</li>
<li role="presentation" class="">
<a href="/archive.html">归档
</a>
</li>
<li role="presentation" class="">
<a href="/about.html">关于
</a>
</li>
</ul>
</div>
<ul class="social">
<li><a href="/feed.xml">
<i class="fa fa-rss"></i>
</a></li>
</ul>
</div>
</aside>
<section id="main" class="index">
<div class="container">
<div id="article-list">
<article class="article">
<div class="row">
<header class="header">
<h3 class="title">
<a href="/2016/1/4/1-about-mapper.html">关于XORM中Mapper的使用</a>
</h3>
</header>
<section class="brief"><p>XORM中的Mapper是一个接口机制,专门用来在程序名称和数据库名称之间进行转换。XORM库中带有三种Mapper的实现,SnakeMapper, SameMapper 以及 GonicMapper。同时为了方便还提供了CacheMapper, PrefixMapper 以及 SuffixMapper,这几种Mapper可以和前面的组合使用。</p>
<h1>SnakeMapper</h1>
<p>SnakeMapper是默认的映射机制,他支持数据库表采用匈牙利命名法,而程序中采用驼峰式命名法。下面是一些常见的映射:</p>
<table>
<thead>
<tr>
<th>表中名称</th>
<th>程序名称</th>
</tr>
</thead>
<tbody>
<tr>
<td>user_info</td>
<td>UserInfo</td>
</tr>
<tr>
<td>id</td>
<td>Id</td>
</tr>
</tbody>
</table>
<h1>SameMapper</h1>
<p>SameMapper就是数据库中的命名法和程序中是相同的。那么鉴于在Go中,基本上要求首字母必须大写。所以一般都是表中和程序中均采用驼峰式命名。下面是一些常见的映射:</p>
<table>
<thead>
<tr>
<th>表中名称</th>
<th>程序名称</th>
</tr>
</thead>
<tbody>
<tr>
<td>UserInfo</td>
<td>UserInfo</td>
</tr>
<tr>
<td>Id</td>
<td>Id</td>
</tr>
</tbody>
</table>
<h1>GonicMapper</h1>
<p>GonicMapper是在SnakeMapper的基础上增加了特例,对于常见的缩写不新增下划线处理。这个同时也符合golint的规则。下面是一些常见的映射:</p>
<table>
<thead>
<tr>
<th>表中名称</th>
<th>程序名称</th>
</tr>
</thead>
<tbody>
<tr>
<td>user_info</td>
<td>UserInfo</td>
</tr>
<tr>
<td>id</td>
<td>ID</td>
</tr>
<tr>
<td>url</td>
<td>URL</td>
</tr>
</tbody>
</table>
<h1>CacheMapper</h1>
<p>CacheMapper 通过使用一个map来将已经映射过的内容保存起来,下次直接查找即可获得。</p>
<h1>PrefixMapper</h1>
<p>PrefixMapper 前缀映射可以组合SnakeMapper, SameMapper或者GonicMapper来在表名或者字段名的映射完成后,再新增一个固定的前缀。比如和SnakeMapper组合:</p>
<pre><code class="language-Go">engine.SetTableMapper(core.NewPrefixMapper(core.SnakeMapper{}, "tb_"))
engine.SetColumnMapper(core.SnakeMapper{})
</code></pre>
<p>那么对于结构体<code>User</code>,数据库中对应的表名即为<code>tb_user</code>,而表中字段名比如<code>id</code>对应的程序中结构体字段名仍为<code>Id</code>。</p>
<h1>SuffixMapper</h1>
<p>SuffixMapper 后缀映射类似与前缀映射,也可以组合SnakeMapper, SameMapper或者GonicMapper来在表名或者字段名的映射完成后,再新增一个固定的前缀。比如和SnakeMapper组合:</p>
<pre><code class="language-Go">engine.SetTableMapper(core.NewSuffixMapper(core.SnakeMapper{}, "_table"))
engine.SetColumnMapper(core.SnakeMapper{})
</code></pre>
<p>那么对于结构体<code>User</code>,数据库中对应的表名即为<code>user_table</code>,而表中字段名比如<code>id</code>对应的程序中结构体字段名仍为<code>Id</code>。</p>
<h1>表名和字段名分别映射</h1>
<p>在前面的例子中也看到了,这种映射可以对表名和字段名采用相同的映射,也可以表名和字段名采用不同的映射方案。</p>
<ul>
<li><p>表名和字段名使用相同映射方案</p>
<pre><code class="language-Go">engine.SetMapper(mapper)
</code></pre></li>
<li><p>表名和字段名使用不同的映射方案</p>
<pre><code class="language-Go">engine.SetTableMapper(mapper1)
engine.SetColumnMapper(mapper2)
</code></pre></li>
</ul>
<p>最后,关于名称映射更多的方法可以参考XORM文档 <a href="http://gobook.io/read/go-xorm/manual-zh-cn/chapter-02/3.tags.html">使用Table和Tag改变名称映射</a></p>
</section>
<aside class="aside clearfix">
<span class="date">
<span class="year">2016</span>/
<span class="month">1</span>/
<span class="day">4</span>
</span>
<span class="tags">
<a class="tag" href="/tags/go.html">go</a>
<a class="tag" href="/tags/golang.html">golang</a>
<a class="tag" href="/tags/xorm.html">xorm</a>
<a class="tag" href="/tags/orm.html">orm</a>
<a class="tag" href="/tags/sql.html">sql</a>
<a class="tag" href="/tags/database.html">database</a>
</span>
<a class="btn btn-primary btn-lg pull-right" href="/2016/1/4/1-about-mapper.html">继续阅读</a>
</aside>
</div>
</article>
<article class="article">
<div class="row">
<header class="header">
<h3 class="title">
<a href="/2015/12/1/1-xorm-join-extends-usage.html">在Xorm中使用Join和Extends标记</a>
</h3>
</header>
<section class="brief"><p>本文主要针对对Xorm已经有了一定了解的读者,如果您是第一次了解Xorm,请先阅读<a href="http://xorm.io/docs">xorm操作手册</a>。</p>
<p>Xorm的基本操作都是比较简单的,可能大家也都比较熟悉了。今天主要讲解extends标记和join的使用。通过使用join和extends,可以解决许多需要级联进行的操作。</p>
<p>一般我们会针对数据库中的每一个表,建立一个对应的结构体。比如:</p>
<pre><code class="language-Go">type User struct {
Id int64
Name string
}
type Account struct {
Id int64
UserId int64 `xorm:"index"`
Amount int64
}
type Car struct {
Id int64
UserId int64 `xorm:"index"`
Type int
}
</code></pre>
<p>我们定义了三个结构体,对应数据库的三个表,我们在启动时通过:</p>
<pre><code class="language-Go">engine.Sync2(new(User), new(Account), new(Car))
</code></pre>
<p>来进行数据库结构的同步。在这个数据库结构中,我们假设一个用户拥有一个Account,一个用户拥有多个Car。</p>
<p>OK。复杂需求来了。</p>
<p>1)我们需要获得所有的用户的姓名和对应的账户的余额:</p>
<pre><code class="language-Go">type AccountUser struct {
Account `xorm:"extends"`
User `xorm:"extends"`
}
var accounts = make([]*AccountUser, 0)
engine.Table("account").Join("INNER", "user", "account.user_id = user.id").Find(&accounts)
</code></pre>
<p>OK。这样,我们就取出了user和对应的account,我们通过<code>account.Account</code>可以获取到Account的信息,通过<code>account.User</code>可以获取到User的信息。</p>
<p>这个是两个表Join,那么如果是三个表也是类似的做法。</p>
<p>2)我只需要用户名,不需要其它的内容:</p>
<pre><code class="language-Go">type AccountUser struct {
Account `xorm:"extends"`
Name string
}
var accounts = make([]*AccountUser, 0)
engine.Table("account").Join("INNER", "user", "account.user_id = user.id").Find(&accounts)
</code></pre>
<p>其实我们代码也是差不多的,但是这里我们实际上在查询数据库的时候是查询了user表的所有内容的。只是在最后赋值到结构体时,按需赋值。</p>
<p>3)更复杂的,我们还想知道每人有几辆车。</p>
<pre><code class="language-Go">type AccountUser struct {
Account `xorm:"extends"`
Name string
NumCars int
}
var accounts = make([]*AccountUser, 0)
engine.Sql("select account.*, user.name, (select count(id) from car where car.user_id = user.id) as num_cars from account, user where account.user_id = user.id").Find(&accounts)
</code></pre>
<p>在这样的复杂需求下,我们使用了Sql函数和extends标记结合来完成这个操作。</p>
</section>
<aside class="aside clearfix">
<span class="date">
<span class="year">2015</span>/
<span class="month">12</span>/
<span class="day">1</span>
</span>
<span class="tags">
<a class="tag" href="/tags/go.html">go</a>
<a class="tag" href="/tags/golang.html">golang</a>
<a class="tag" href="/tags/xorm.html">xorm</a>
<a class="tag" href="/tags/orm.html">orm</a>
<a class="tag" href="/tags/sql.html">sql</a>
<a class="tag" href="/tags/database.html">database</a>
</span>
<a class="btn btn-primary btn-lg pull-right" href="/2015/12/1/1-xorm-join-extends-usage.html">继续阅读</a>
</aside>
</div>
</article>
<article class="article">
<div class="row">
<header class="header">
<h3 class="title">
<a href="/2015/10/1/welcome.html">Xorm博客定型</a>
</h3>
</header>
<section class="brief"><p>终于迎来了个人认为最有发展潜力的静态站点生成工具 <a href="https://github.com/go-xiaohei/pugo">Pugo</a>发布了第一个稳定版本,本博客将使用其搭建,将会发布关于xorm的高质量文章和新版本等信息.</p>
</section>
<aside class="aside clearfix">
<span class="date">
<span class="year">2015</span>/
<span class="month">10</span>/
<span class="day">1</span>
</span>
<span class="tags">
<a class="tag" href="/tags/go.html">go</a>
<a class="tag" href="/tags/golang.html">golang</a>
<a class="tag" href="/tags/xorm.html">xorm</a>
<a class="tag" href="/tags/orm.html">orm</a>
<a class="tag" href="/tags/sql.html">sql</a>
<a class="tag" href="/tags/database.html">database</a>
</span>
<a class="btn btn-primary btn-lg pull-right" href="/2015/10/1/welcome.html">继续阅读</a>
</aside>
</div>
</article>
<article class="article">
<div class="row">
<header class="header">
<h3 class="title">
<a href="/2014/1/1/1-7-weapons.html">XORM的七种武器</a>
</h3>
</header>
<section class="brief"><p><a href="https://github.com/lunny/xorm">xorm</a> 是一个简单而强大的 Go 语言开源 ORM 库. 通过它可以使数据库操作非常简便。</p>
<h1>xorm 的七种武器</h1>
<p><a href="https://github.com/lunny/xorm">xorm</a> 是一个简单而强大的 Go 语言开源 ORM 库. 通过它可以使数据库操作非常简便。</p>
<p>了解过 Go 的人可能会有疑问,Go 已经提供了 database/sql 接口,操作各种数据库接口都一致了,还有必要再使用 ORM 吗?也有人觉得对于复杂 SQL 语句,ORM 是无法应付的。</p>
<p>是的,<a href="https://github.com/lunny/xorm">xorm</a> 不是为了取代 SQL,它甚至可以和 SQL 混用,它是在 databse/sql 接口的基础之上提供了更多的特性。我们将这些功能和特性比喻成七种武器,来帮助开发者快速的完成数据库的操作。</p>
</section>
<aside class="aside clearfix">
<span class="date">
<span class="year">2014</span>/
<span class="month">1</span>/
<span class="day">1</span>
</span>
<span class="tags">
<a class="tag" href="/tags/go.html">go</a>
<a class="tag" href="/tags/golang.html">golang</a>
<a class="tag" href="/tags/xorm.html">xorm</a>
<a class="tag" href="/tags/orm.html">orm</a>
<a class="tag" href="/tags/sql.html">sql</a>
<a class="tag" href="/tags/database.html">database</a>
</span>
<a class="btn btn-primary btn-lg pull-right" href="/2014/1/1/1-7-weapons.html">继续阅读</a>
</aside>
</div>
</article>
<div class="article-pager">
<span class="current">Page 1 of 1</span>
</div>
</div>
<footer id="footer">
<div class="container text-center">
<p class="left">© 2015 XORM.
<a href="http://creativecommons.org/licenses/by/3.0/">Some rights reserved </a> |
<a href="/feed.xml">Feed</a> |
<a href="/sitemap.xml">Sitemap</a>
</p>
<p class="right">Powered by <a href="https://github.com/go-xiaohei/pugo">PuGo 0.9.0.0101</a>. Theme by Uno.
</p>
</div>
</footer>
</div>
</section>
<script>
$(function () {
$(".navigation li.active a").on("click", function () {
var $cover = $('.cover');
var $main = $('#main');
$cover.hasClass("index") ? $cover.removeClass("index") && $main.show() : $cover.addClass("index") && $main.hide();
return false;
});
})
</script>
<script src="/static/js/prism.min.js"></script>
<script>
$(document).ready(function () {
$("pre code").addClass("line-numbers")
});
</script>
</body>
</html>