embedded-database

Java, MySQL: Is there a way to embed a MySQL server with a Java program?

倖福魔咒の 提交于 2019-12-28 06:29:26
问题 One thing I love about .NET is the ability to have a database file along with the project. I know that using a SQLite database, this can be done, but did someone achieve this with a MySQL database backend? So for instance, if I run a java program, it should be able to start its own mini MySQL server and manipulate data. So essentially, I want the same flow as with a SQLite but I need the power of MySQL. 回答1: A quick search shows this: MySQL Connector/MXJ — for embedding MySQL server in Java

Embedding Cassandra - Security Manager issues

*爱你&永不变心* 提交于 2019-12-25 18:21:24
问题 I am attempting to upgrade an application that uses an embedded cassandra 2.1.1 (about time!), but the application in question sets it's own security manager. Cassandra 3.11 seems to not consider this possibility and just attempts to set the security manager on it's own without any consideration that there might already be one (which fails). 2017-06-26T12:05:22,736 ERROR Thread-0 org.apache.cassandra.service.CassandraDaemon Exception encountered during startup java.security

Standalone Desktop Application

风流意气都作罢 提交于 2019-12-23 03:14:44
问题 I have been tasked with the creation of a desktop application within some very rigid constrains. The first version of the application was quite small, only intended for some specific tasks, but it seems like the application was quite liked, so I've been asked to improve it a lot . The initial app I created was made as a hta with heavy doses of javascript and jquery, using a XML to store information (through MSXML2.3.0), but the increased amount of data makes me think it won't be able to keep

Spring-boot + JDBC + HSQLDB: How to Verify if Spring Boot is using a Connection Pool?

拟墨画扇 提交于 2019-12-22 17:55:26
问题 According to this documentation: 29.1.1 Embedded Database Support Spring Boot can auto-configure embedded H2, HSQL and Derby databases. You don’t need to provide any connection URLs, simply include a build dependency to the embedded database that you want to use. and 29.1.2 Connection to a production database Production database connections can also be auto-configured using a pooling DataSource. DataSource configuration is controlled by external configuration properties in spring.datasource.*

Is Firebird good embedded DB for ASP.NET? Which else?

谁说我不能喝 提交于 2019-12-22 11:27:23
问题 Looking for a good embedded db for my asp.net apps while trying to avoid SQLExpress ( I need it to be a downloable file(s) with no need to install at server ), I found Firebird. But: According to this: http://en.wikipedia.org/wiki/Embedded_database#Firebird_Embedded It has the same features as the classic and superserver version of Firebird, except that two or more THREADS (not just applications) cannot access the same database at the same time. So Firebird embedded acts as a local server for

How Do SQLite and DISQLite Compare for a Large Simple Database?

邮差的信 提交于 2019-12-22 08:47:33
问题 What are the differences between SQLite and DISQLite and why would I want to pick one over the other? My context is that I am dealing with a large database (could be up to 10 GB), the critical part of which is in one very simple table with a single indexed field and one text field up to a few KB in size. My development tool is Delphi 2009 and the database will be embedded in my .exe. My main criteria is speed. This would be for a software application running on a typical Windows computer, say

In-memory DBMS's for unit testing

喜夏-厌秋 提交于 2019-12-21 12:26:22
问题 I am looking for satisfactory options for unit testing my .NET DAL classes; since they're DAL classes, they access the database directly using ADO.NET. Presently I use an instance of a MSSQL database for the testing, but was wondering what faster options there are---since unit tests need to run as quickly as possible, an in-memory solution would be ideal. I should also mention that I have tied myself to TSQL since I'm only ever going to be using a Microsoft platform. 回答1: Given that you state

How to specify a variable expression list in a Pro*C query?

烈酒焚心 提交于 2019-12-20 06:36:58
问题 I have a problem with a Pro*C query I'm trying to optimise. To explain, our application searches for rows in a huge database. These rows exist in several languages and the old code selected a row for each language in an array. Now as these queries are the most time consuming part of our app, I wanted to make only one query which writes directly in an array. The language codes are 2 letter ISO-639 codes (en for english, fr for french). Old way (this is only a simplified code to show the

Embedded database for windows 8 app [closed]

寵の児 提交于 2019-12-19 17:52:09
问题 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 5 years ago . Is there any kind of embed-able database for windows 8 app development? I was looking for something like Sqlite or etc which integrate with visual studio 11. 回答1: For JavaScript, you're probably best off just using HTML5 IndexedDB. Unfortunately, that is not directly available to other languages. There is a

Multi-user application without need to install anything - embedded database that allows concurrent user writes? [closed]

倖福魔咒の 提交于 2019-12-19 12:24:17
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 6 years ago . I need to create an application, that is used by multiple users concurrently does not require any installation has a centralized data storage data must be stored inside company's network i don't have access to company's internal database servers or webservers These