-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmdb.py
49 lines (34 loc) · 886 Bytes
/
mdb.py
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
# -*- coding: utf-8 -*-
"""
------------------------------------------------
describe:
------------------------------------------------
"""
__version__ = "v.10"
__author__ = "PyGo"
__time__ = "2016/11/29"
__MDBOpr_method__ = ["create", "copy_feature", "copy_table", "copy_dataset",
"copy_one_feature", "copy_one_table", "copy_one_dataset"]
class MDBOpr(object):
def __init__(self):
pass
def __del__(self):
pass
def __cmp__(self, other):
pass
def create(self):
pass
def back(self):
pass
def copy_feature(self):
pass
def copy_table(self):
pass
def copy_dataset(self):
pass
def copy_one_feature(self):
pass
def copy_one_table(self):
pass
def copy_one_dataset(self):
pass