Home > Enterprise >  SQL Tables without SQL Server or Express
SQL Tables without SQL Server or Express

Time:05-28

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?

CodePudding user response:

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

CodePudding user response:

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.

  • Related