ormlite-core
ormlite-core copied to clipboard
Add support for foreign key sqllite
Can't make use of constraint on cascade delete because sqlite won't enforce fk by default. This must be send as a parameter in the connection but ormlite won't recognize the fk=true parameter on the connection string
How does ormlite not recognizing the parameter? Is it filtering it somehow?
im used to send the parameter on the conection string as foreign keys=true; , but it fails as it takes the parameter as part of the path. Is there an specific way of set the fk true?. As ive read sqlite need to set fk true on every new conection.