Top "Uuid" questions

A UUID (Universally Unique IDentifier) is an identifier that is created with the intent of being, as the name suggests, universally unique.

How can I use UUIDs in SQLAlchemy?

Is there a way to define a column (primary key) as a UUID in SQLAlchemy if using PostgreSQL (Postgres)?

python postgresql orm sqlalchemy uuid
Creating a UUID from a string with no dashes

How would I create a java.util.UUID from a string with no dashes? "5231b533ba17478798a3f2df37de2…

java string clojure uuid
UUID performance in MySQL?

We're considering using UUID values as primary keys for our MySQL database. The data being inserted is generated from dozens, …

mysql performance innodb sequence uuid
Platform-independent GUID generation in C++?

What is the best way to programmatically generate a GUID or UUID in C++ without relying on a platform-specific tool? …

c++ cross-platform guid uuid
python: how to convert a valid uuid from String to UUID?

I receive the data as { "name": "Unknown", "parent": "Uncategorized", "uuid": "06335e84-2872-4914-8c5d-3ed07d2a2f16" }, …

python uuid
MySql Insert Select uuid()

Say you have a table: `item` With fields: `id` VARCHAR( 36 ) NOT NULL ,`order` BIGINT UNSIGNED NOT NULL And: Unique(`id`) …

mysql uuid insert-select
How to generate time based UUIDs?

I want to generate time-based universally unique identifier (UUID) in Java. The method java.util.UUID.randomUUID() generates a UUID …

java uuid
How to store uuid as number?

Based on the answer of question, UUID performance in MySQL, the person who answers suggest to store UUID as a …

mysql uuid
how to use UUID in Django

I am trying to get unique IDs for my Django objects. In Django 1.8 they have the UUIDField. I am unsure …

python django django-models uuid
How to generate unique positive Long using UUID

I have a requirement to generate unique Long ids for my database primary key column. I thought i can use …

java uuid