@@ -431,22 +431,19 @@ Connection Objects
431
431
432
432
.. method :: create_collation(name, callable)
433
433
434
- Creates a collation with the specified *name * and *callable *. The callable will
435
- be passed two string arguments. It should return -1 if the first is ordered
436
- lower than the second, 0 if they are ordered equal and 1 if the first is ordered
437
- higher than the second. Note that this controls sorting (ORDER BY in SQL) so
438
- your comparisons don't affect other SQL operations.
434
+ Create a collation named *name * using the collating function *callable *.
435
+ *callable * is passed two :class: `string <str> ` arguments,
436
+ and it should return an :class: `integer <int> `:
439
437
440
- Note that the callable will get its parameters as Python bytestrings, which will
441
- normally be encoded in UTF-8.
438
+ * ``1 `` if the first is ordered higher than the second
439
+ * ``-1 `` if the first is ordered lower than the second
440
+ * ``0 `` if they are ordered equal
442
441
443
- The following example shows a custom collation that sorts "the wrong way" :
442
+ The following example shows a reverse sorting collation :
444
443
445
444
.. literalinclude :: ../includes/sqlite3/collation_reverse.py
446
445
447
- To remove a collation, call ``create_collation `` with ``None `` as callable::
448
-
449
- con.create_collation("reverse", None)
446
+ Remove a collation function by setting *callable * to :const: `None `.
450
447
451
448
452
449
.. method :: interrupt()
0 commit comments