{"connect",(PyCFunction)module_connect,METH_VARARGS|METH_KEYWORDS,PyDoc_STR("Creates a connection.")},
{"complete_statement",(PyCFunction)module_complete,METH_VARARGS|METH_KEYWORDS,PyDoc_STR("Checks if a string contains a complete SQL statement.")},
{"complete_statement",(PyCFunction)module_complete,METH_VARARGS|METH_KEYWORDS,PyDoc_STR("Checks if a string contains a complete SQL statement. Non-standard.")},
#ifdef HAVE_SHARED_CACHE
{"enable_shared_cache",(PyCFunction)module_enable_shared_cache,METH_VARARGS|METH_KEYWORDS,PyDoc_STR("Enable or disable shared cache mode for the calling thread.")},
{"enable_shared_cache",(PyCFunction)module_enable_shared_cache,METH_VARARGS|METH_KEYWORDS,PyDoc_STR("Enable or disable shared cache mode for the calling thread. Experimental/Non-standard.")},
#endif
{"register_adapter",(PyCFunction)module_register_adapter,METH_VARARGS,PyDoc_STR("Registers an adapter with sqlite's adapter registry.")},
{"register_converter",(PyCFunction)module_register_converter,METH_VARARGS,PyDoc_STR("Registers a converter with sqlite.")},
{"register_adapter",(PyCFunction)module_register_adapter,METH_VARARGS,PyDoc_STR("Registers an adapter with pysqlite's adapter registry. Non-standard.")},
{"register_converter",(PyCFunction)module_register_converter,METH_VARARGS,PyDoc_STR("Registers a converter with pysqlite. Non-standard.")},