SQL Tables without SQL Server or Express

167 Views Asked by At

This question is directed at developers that use database tables in their applications.

Is it possible to create/develop an application that uses a table that was created in SQL Server or SQL Server Express, without having either of those applications installed on the users system/device?

2

There are 2 best solutions below

1
VIVEK SANWAL On

Its depends which type of connection string you have if its local so you need to download and if its not local you can use

0
Clifford Cheefoon On

Seems like you're looking for SQLite. This approach uses the filesystem to store data that we can access using standard SQL queries. It requires no additional applications to be installed.