|
@@ -1,7 +1,6 @@
|
1
|
1
|
# -*- coding: utf8 -*-
|
2
|
2
|
|
3
|
3
|
|
4
|
|
-import EditorialModel
|
5
|
4
|
import pymysql
|
6
|
5
|
|
7
|
6
|
|
|
@@ -14,7 +13,7 @@ class MySQL(object):
|
14
|
13
|
_class_table_prefix = 'class_'
|
15
|
14
|
_objects_table_name = 'object'
|
16
|
15
|
_connections = {
|
17
|
|
- 'default':{
|
|
16
|
+ 'default': {
|
18
|
17
|
'module': pymysql,
|
19
|
18
|
'host': '127.0.0.1',
|
20
|
19
|
'user': 'lodel',
|
|
@@ -55,7 +54,6 @@ class MySQL(object):
|
55
|
54
|
raise ValueError("Invalid name : '%s'" % idname)
|
56
|
55
|
return '`%s`' % idname
|
57
|
56
|
|
58
|
|
-
|
59
|
57
|
@classmethod
|
60
|
58
|
## @brief Given a fieldtype, returns a MySQL type specifier
|
61
|
59
|
# @param emfieldType EmFieldType : A fieldtype
|
|
@@ -86,4 +84,4 @@ class MySQL(object):
|
86
|
84
|
else:
|
87
|
85
|
raise ValueError("Unsupported fieldtype ftype : %s" % ftype)
|
88
|
86
|
|
89
|
|
- return res
|
|
87
|
+ return res
|