License: GNU GPL version 3
A:
Check out OraDump.
OraDump is a program to import the data in an export file or direct from
the dump file to a running MySQL instance. It was first released in
February 2005 as a free software download on Oracle's Web site, and it
has been available to users of MySQL for at least two years.
OraDump has three primary types of import: a direct DUMP dump, a
reverse DUMP dump, and an export dump.
[4, 7, 6]
"""
return [
int(a_num[1:]) for a_num in a_list]
def read_int(self):
>>> class IntReverseList:
... def __init__(self, file):
... self.file = file
... self.list = []
... self.list_length = 0
... def read_int(self):
... self.list_length = int(self.file.readline().strip())
... while True:
... self.list.append(self.list_length % 2)
... self.list_length >>= 1
... if
Related links:
Komentarze