Searched refs:sql (Results 1 – 6 of 6) sorted by relevance
53 …pysqlite_statement_create(pysqlite_Statement* self, pysqlite_Connection* connection, PyObject* sql) in pysqlite_statement_create() argument63 if (PyString_Check(sql)) { in pysqlite_statement_create()64 sql_str = sql; in pysqlite_statement_create()66 } else if (PyUnicode_Check(sql)) { in pysqlite_statement_create()67 sql_str = PyUnicode_AsUTF8String(sql); in pysqlite_statement_create()78 self->sql = sql_str; in pysqlite_statement_create()331 sql_cstr = PyString_AsString(self->sql); in pysqlite_statement_recompile()418 Py_XDECREF(self->sql); in pysqlite_statement_dealloc()
39 PyObject* sql; member46 …ysqlite_statement_create(pysqlite_Statement* self, pysqlite_Connection* connection, PyObject* sql);
1177 PyObject* sql; in pysqlite_connection_call() local1186 if (!PyArg_ParseTuple(args, "O", &sql)) { in pysqlite_connection_call()1199 statement->sql = NULL; in pysqlite_connection_call()1203 rc = pysqlite_statement_create(statement, self, sql); in pysqlite_connection_call()
261 ms-sql-s 1433/tcp # Microsoft SQL Server262 ms-sql-s 1433/udp263 ms-sql-m 1434/tcp # Microsoft SQL Monitor264 ms-sql-m 1434/udp
89 def sql(self): member in Table132 v = db.OpenView(self.sql())
104 sample/sql.c example of the variable meta characters.