Lines Matching refs:module
29 # of a virtual module.
38 # This file uses the "echo" module (see src/test8.c). Refer to comments
56 # We cannot create a virtual table if the module has not been registered.
62 } {1 {no such module: echo}}
67 } {1 {no such module: echo}}
74 # Register the module
77 # Once a module has been registered, virtual tables using that module
78 # may be created. However if a module xCreate() fails to call
81 # The "echo" module does not invoke sqlite3_declare_vtab() if it is
100 # The "echo" module xCreate method returns an error and does not create
185 } {1 {no such module: echo}}
190 } {1 {no such module: echo}}
195 } {1 {no such module: echo}}
200 } {1 {no such module: echo}}
205 } {1 {no such module: echo}}
210 } {1 {no such module: echo}}
238 # At this point, the database is completely empty. The echo module
241 # If a single argument is passed to the echo module during table
243 # database. The echo module attempts to set the schema of the
288 # echo module has not been registered with this database connection.
292 } {1 {no such module: echo}}
294 # Register the module
340 # Test case vtab1-3 test table scans and the echo module's
403 # Then check the echo_module variable (written to by the module methods
467 # The echo module uses a subquery internally to implement the MATCH operator.
484 # Test case vtab1-3 test table scans and the echo module's
1356 # Test that it is ok to override and existing module.