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

Method select

lib/core/replication.py:105–112  ·  view source on GitHub ↗

This function is used for selecting row(s) from current table.

(self, condition=None)

Source from the content-addressed store, hash-verified

103 self.execute('END TRANSACTION')
104
105 def select(self, condition=None):
106 """
107 This function is used for selecting row(s) from current table.
108 """
109 _ = 'SELECT * FROM %s' % self.name
110 if condition:
111 _ += 'WHERE %s' % condition
112 return self.execute(_)
113
114 def createTable(self, tblname, columns=None, typeless=False):
115 """

Callers 2

sendMethod · 0.45
_recvMethod · 0.45

Calls 1

executeMethod · 0.95

Tested by

no test coverage detected