views:

21

answers:

1

Hi guys, was just wondering what formats of databases can SQLite support.

i only know of .sql. Is .mdf supported?

+1  A: 

The file extension doesn't actually matter; only the contents do. But it supports SQLite databases. :) MDF is an SQL Server format, and is not supported.

Matthew Flaschen
alright thanks.!
Kenneth
sorry but where do i find a list of supported SQLIte databases?
Kenneth
@Kenneth, see http://www.sqlite.org/fileformat.html and http://www.sqlite.org/formatchng.html . There's really just one evolving database format.
Matthew Flaschen