1
I’m using Sqlitestudio to model a database. When creating the fields of a table, I noticed that it has some data types that do not appear in the Sqlite documentation. For example, in the combobox where we chose the type of the column, it has: BOOLEAN, DOUBLE, searched in the Sqlite documentation and did not find these types of data.
Opa, Diego. This I had already seen. My question is why the Sqlitestudio allows creating columns with these data types if Sqlite does not support. PRINTSCREEN
– Matheus Saraiva
@Matheussaraiva he must do the conversions as described in the documentation, it is interesting you check what type of fields of the table, probably what you have selected Boolean, he created as int, and the double must be as real.
– user28595
@Matheussaraiva actually your question is not the one you put in the comment. But if the intention is that it is, you can [Edit] the.
– Bacco
@Matheussaraiva In the answer image, "middle" column, shows the type of "affinity" (
Affinity
) column and if you consult the linkSQLite - DataType
of the answer, there explains why: "increase the compatibility of Sqlite with other Databases". It is not Sqlitestudio who "creates" these types– Gomiero
@Matheussaraiva You can’t put a direct link, but the phrase is right at the beginning of the item:
2.0 Type Affinity
:)– Gomiero