add UUID support for Firebird

Issue #2465 wontfix
Former user created an issue

Since Firebird 2.1 there is a built-in function GEN_UUID that creates a 128bit UUID

Built in functions CHAR_TO_UUID2, UUID_TO_CHAR2

see doc/sql.extensions/README.builtin_functions.txt in your firebird installation

Comments (3)

  1. Mike Bayer repo owner

    what's wrong with:

    from sqlalchemy import func
    func.GEN_UUID()
    func.CHAR_TO_UUID2()
    func.UUID_TO_CHAR2()
    

    ?

    no sqlalchemy function is needed here.

    if FB has a UUID type, we can add that. kinterbasdb should support it directly too.

  2. Log in to comment