-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPostgreSQLExpression.swift
81 lines (61 loc) · 1.78 KB
/
PostgreSQLExpression.swift
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
//
// PostgreSQLAdaptor.swift
// ZeeQL
//
// Created by Helge Hess on 03/03/17.
// Copyright © 2017 ZeeZide GmbH. All rights reserved.
//
import ZeeQL
// MARK: - Expressions
open class PostgreSQLExpressionFactory: SQLExpressionFactory {
static let shared = PostgreSQLExpressionFactory()
override open func createExpression(_ entity: Entity?) -> SQLExpression {
return PostgreSQLExpression(entity: entity)
}
}
open class PostgreSQLExpression: SQLExpression {
var bindCounter : Int = 0
override open func bindVariableDictionary(for attribute: Attribute?,
value: Any?)
-> BindVariable
{
var bind = super.bindVariableDictionary(for: attribute, value: value)
bindCounter += 1
bind.placeholder = "$\(bindCounter)"
return bind
}
override open var sqlStringForCaseInsensitiveLike : String? {
return "ILIKE"
}
// MARK: - Insert w/ returning
open func prepareInsertReturningExpressionWithRow
(_ row: AdaptorRow, attributes attrs: [Attribute]?)
{
// Note: we need the entity for the table name ...
guard entity != nil else { return }
// prepareSelectExpressionWithAttributes(attrs, lock, fs)
useAliases = false
/* prepare columns to select */
let columns : String
if let attrs = attrs {
if !attrs.isEmpty {
listString.removeAll()
for attr in attrs {
self.addSelectListAttribute(attr)
}
columns = listString
listString.removeAll()
}
else {
columns = "*"
}
}
else {
columns = "*"
}
/* create insert */
prepareInsertExpressionWithRow(row)
/* add returning */
statement += " RETURNING " + columns
}
}