embedded-database

Table view does not exist exception on Netbeans Derby connection

余生颓废 提交于 2019-12-11 10:11:41
问题 I followed the instructions in this blog to create a basic embedded database application.However, although checking the steps over and over and searching for the problem on the web , I'm still getting the exception : Table view blabla does not exists. Table seems to exists when I expand my driver's app schema. Netbeans version is 7.3. 回答1: The most common reason for a table-does-not-exist error with Derby is confusion over the location of the database. The database that you are accessing via

Open Source Embedded Database Options for .Net Applications

早过忘川 提交于 2019-12-11 07:05:23
问题 I have a .Net 4.0 WPF application that requires an embedded database. MS Access doesn't work on 64 bit Windows I'm told. And I'm having issues with SSCE: Unable to load DLL 'sqlceme35.dll': This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem. (Exception from HRESULT: 0x800736B1) sqlceme35.dll is installed into my application's program files directory, so I can't seem to figure out why Windows XP Pro doesn't

Suitable database for swing application which does not need server dependancy

心已入冬 提交于 2019-12-11 04:07:06
问题 Which database is suitable for swing desktop application from the followings :? SQLite Apache Derby HyperSQL DB I want to store my data locally instead of using web service and store for temporary from the above which is lighten local database ? 回答1: To add to the embedded SQL answer, you can also run the noSQL Neo4J in memory without the need for disk access. If I remember your previous question, you want to actually ship the data inside the jar, correct? Then you need to ship the data as

Embedded MySQL Server C# Wrapper?

≯℡__Kan透↙ 提交于 2019-12-11 03:52:06
问题 I have been heavily contemplating adding the Embedded MYSQL Server Library into my application. My software is a layer between a Game Server and a Web Management Panel that provides extra functionality. Many of our customers have been requesting MySQL databases for their servers (since this is what their plugins are developed to use), and being able to run one within my software rather than manually set them up would be fantastic. Is there a .NET wrapper for this library I am missing? The

Embedded or managed Oracle instance for integration tests

坚强是说给别人听的谎言 提交于 2019-12-11 01:37:59
问题 For MySQL, the MXJ connector makes it very easy to launch a managed MySQL instance. I know that Oracle provides Oracle XE for quick setup, but I've only found an RPM distribution that needs to be installed. Is there a neatly packaged jar that I can just drop in the classpath and start up by calling a specific JDBC url, a la HSQLDB or MXJ? I'm interested in having developers use this locally for running tests, as well as on our continuous integration server. 回答1: The short answer is No. Oracle

When to use an Embedded Database

心不动则不痛 提交于 2019-12-10 15:31:38
问题 I am writing an application, which parses a large file, generates a large amount of data and do some complex visualization with it. Since all this data can't be kept in memory, I did some research and I'm starting to consider embedded databases as a temporary container for this data. My question is: is this a traditional way of solving this problem? And is an embedded database (other than structuring data) supposed to manage data by keeping in memory only a subset (like a cache), while the

Cross-platform embedded database/key-value store for C#

五迷三道 提交于 2019-12-10 12:56:42
问题 I'm looking for a fast, embeddable key/value store with cursor semantics over key collections (or a simple embeddable DB) that I can use in .NET and mono. Need it to be open-source, would prefer an MIT or Apache style license over a GPL license. Not opposed to a library that needs bindings to be written, as long as binaries are available for both windows and linux. Options considered: SQLite - has bindings and native implementation, but single-threaded and not all that fast Embedded InnoDB -

Best way to create schema in embedded HSQL database

ⅰ亾dé卋堺 提交于 2019-12-10 03:28:58
问题 I'm currently using the following setup to create a schema in an embedded database before running my tests against it In my application context <jdbc:embedded-database id="dataSource" type="HSQL"> <jdbc:script location="classpath:createSchema.sql" /> </jdbc:embedded-database> createSchema.sql create schema ST_TEST AUTHORIZATION DBA; hibernate properties <properties> <property name="hibernate.dialect" value="org.hibernate.dialect.HSQLDialect" /> <property name="hibernate.default_schema" value=

Simple database application for Windows

匆匆过客 提交于 2019-12-09 14:43:50
问题 I need to build a simple, single user database application for Windows. Main requirements are independence from windows version and installed software. What technologies (language/framework) would you recommend? My preference for language is the Visual Basic. EDIT: What about VB.Net and SQL Server Compact Edition? 回答1: I would recommend Sqlite. It's completely self-contained, and public domain so there are no license issues at all. 回答2: Single user or multi user? For single user, the answer