portable-database

Can I install SQL Server on a USB drive?

邮差的信 提交于 2020-01-01 05:31:09
问题 I'm a developer and I often work remotely when I can rather than commuting to work. I would like to be able to take the dev database environment with me. I know I can access the database remotely, but it slow. I sometimes work where there's no wireless connection. Any ideas? 回答1: Yes, it's possible. See this thread on MSDN. 回答2: You can store the data files on an external drive. The server software itself, though, I'd install naively on each machine you use. This method assumes that your

Portable database for storing secrets

陌路散爱 提交于 2019-12-21 17:52:41
问题 I'm developing a application that needs storing secrets in a database. I need a portable database (like Firebird, Sqlite, etc) where the data will be stored encrypted or password protected or both... Let's take as example that I want create a password manager. I will need store that passwords in a database. I'm accustomed to use Embed Firebird, but not for secret data. Another solution is to use the database naturally and encrypt the database file when I'm not connected to file, but I'm not

Non-installed database

我是研究僧i 提交于 2019-12-11 04:36:00
问题 I need a database for my application. However, I want a portable database like SQL Express that user does not need to install any database. However my environment is now changed to Linux. Any suggestions? I accept both SQL (Oracle, SQL Server, Postgre...) and non-SQL (mongodb...etc) databases. Thanks! 回答1: SQLite is the de facto standard. SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine. SQLite is the most widely

portable non-relational database

筅森魡賤 提交于 2019-12-08 02:07:08
问题 I want to experiment/play around with non-relational databases, it'd be best if the solution was: portable, meaning it doesn't require an installation. ideally just copy-pasting the directory to someplace would make it work. I don't mind if it requires editing some configuration files or running a configuration tool for first time usage. accessible from python works on both windows and linux What can you recommend for me? Essentially, I would like to be able to install this system on a shared

How do you create portable databases with MsBuild?

匆匆过客 提交于 2019-12-07 11:49:36
问题 I want to store in my solution a project containing the database creation scripts. When this project is built, it must generate a database file, which will then be used by this and other projects of the solution at the run time. How to do that? I know I can add Pre-Build task, but I wonder: which command line can help me (maybe sqlite has a command line client?) will it need that I create an empty database file before running the scripts? 回答1: You can download the command line client shell

portable non-relational database

我与影子孤独终老i 提交于 2019-12-06 11:14:01
I want to experiment/play around with non-relational databases, it'd be best if the solution was: portable, meaning it doesn't require an installation. ideally just copy-pasting the directory to someplace would make it work. I don't mind if it requires editing some configuration files or running a configuration tool for first time usage. accessible from python works on both windows and linux What can you recommend for me? Essentially, I would like to be able to install this system on a shared linux server where I have little user privileges. Andy Dent I recommend you consider BerkelyDB with

How do you create portable databases with MsBuild?

偶尔善良 提交于 2019-12-06 00:53:58
I want to store in my solution a project containing the database creation scripts. When this project is built, it must generate a database file, which will then be used by this and other projects of the solution at the run time. How to do that? I know I can add Pre-Build task, but I wonder: which command line can help me (maybe sqlite has a command line client?) will it need that I create an empty database file before running the scripts? You can download the command line client shell for SQLite at http://www.sqlite.org/download.html Then you can add the following Pre-Build task: "sqlite3.exe"

Alternatives to Access [closed]

雨燕双飞 提交于 2019-11-30 17:33:38
Are there any alternatives to MS Access? Requirements: Portable Database file Integrated form development for data entry No compiling necessary. Can be modified on the fly. Two more requirements: Available for Linux or Windows Does not have to be free EDIT: Emphasised Integrated form development for data entry as the top voted answers for this question, at the time of edit, both recommend a simple database system. The reason why Access is still so hard to replace for simple department level CRUD (and more) applications is the integration of database, data entry forms and reporting tool. Simply

Alternatives to Access [closed]

给你一囗甜甜゛ 提交于 2019-11-30 01:22:03
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . Are there any alternatives to MS Access? Requirements: Portable Database file Integrated form development for data entry No compiling necessary. Can be modified on the fly. Two more requirements: Available for Linux or Windows Does not have to be free EDIT: Emphasised Integrated form development for data entry