I\'m writing java application that is using both SQLite and MySQL using JDBC.
Are there any differences in
A big difference is the type system. SQLite lets you put any type of data in any column. It does, however, cast data to the declared type of the column if possible.