MCPcopy Index your code
hub / github.com/sqlmapproject/sqlmap / createTable

Method createTable

lib/core/replication.py:114–118  ·  view source on GitHub ↗

This function creates Table instance with current connection settings.

(self, tblname, columns=None, typeless=False)

Source from the content-addressed store, hash-verified

112 return self.execute(_)
113
114 def createTable(self, tblname, columns=None, typeless=False):
115 """
116 This function creates Table instance with current connection settings.
117 """
118 return Replication.Table(parent=self, name=tblname, columns=columns, typeless=typeless)
119
120 def __del__(self):
121 self.cursor.close()

Callers 1

dbTableValuesMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected