MySQL and SQLite differences in SQL

前端 未结 3 1567
盖世英雄少女心
盖世英雄少女心 2021-01-12 09:48

I\'m writing java application that is using both SQLite and MySQL using JDBC.

Are there any differences in

3条回答
  •  悲&欢浪女
    2021-01-12 10:28

    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.

提交回复
热议问题