A database is an organized collection of data.
5
votes
0answers
1k views
Create a stored procedure in HSQLDB with Spring embedded databases API
I am currently trying to create a testing environment using an in-memory HSQLDB instance, created using Spring, thanks to its embedded databases support:
Current set up
Creation of the "data ...
4
votes
0answers
865 views
DAAB, the best approach to use Database instances is
Guys, I am going to use Enterprise Library (4.1) and especially DAAB. Here is I have questions:
What is the best approach and why:
Every time when I need to run a
DbCommand I create Database ...
3
votes
0answers
47 views
PyroCMS / Codeigniter : too many session entries in db
I'm using for a small website the pyrocms / codeigniter combo.
after adding some content, i checked the db and saw that:
is this a normal behaviour? multiple session_ids for one user with the same ...
3
votes
0answers
101 views
get a listbox binding on both the calendar and a combobox VIDEO
I have filmed my problem as it is easier to explain on video. I want the listbox to display the time began from the bookings table, that relies on the date from the bookings table and the room from ...
3
votes
0answers
100 views
Yesod Persistence - Aggregate functions
I'm evaluating Yesod as a platform for writing a web-based accounting software for inhouse use. So far I'm impressed.
Modelling the entities to suit Persistent is pretty straight-forward, being able ...
3
votes
0answers
117 views
Convert To BCNF
I'm given the following relation:
R(A,B,C,D,E)
and the following Functional Dependencies:
F1 - AC -> D
F2 - D -> E
F3 - E -> A
I am attempting to convert this to BCNF form.
The first ...
3
votes
0answers
90 views
Getting low on storage space error while using local database
I'm using local database to store my data. My code is based on a tutorial: How to create a basic local database app for Windows Phone Everything was right, but I had to add some more data to my ...
3
votes
0answers
192 views
Disk-based B+-tree implementation with fixed-size keys and values
Is there any library providing a disk-based B+-tree implementation, specifically designed for the scenario in which all keys have a fixed size and all values have a fixed size as well (not necessarily ...
3
votes
0answers
126 views
Linq to SQL & EntityRef done “cast not valid”
I have a strange problem with Linq to SQL : Application thrown an exсeption "specified cast is not valid" on this action:
valeur.ParametreX = (From par In db.Parametre
Where ...
3
votes
0answers
123 views
How to synchronize previously deleted rows
I have a junction/ many to many table in my database. This table has 2 columns forming a composite primary key; userid & groupid.
I'm having an issue where once a row is deleted it can never be ...
3
votes
0answers
70 views
How to read tbf file with STAMP encryption
I have Toronto Stock Exchange stock data in a maxtor hard drive. The data is a TBF file with .dat and .pos components. The .dat file contains all the Stamp format transmission information in binary ...
3
votes
0answers
85 views
sqlite create/delete lots of tables
I am using sqlite in multithreaded process. I have both in-memory db and filesystem db attached together. I have a requirement to keep moving tables from in-memory db to filesystem db(move 2 tables ...
3
votes
0answers
178 views
Deployment of DB TFS MSBuild
I have the following problem deploying our ASP.net Webproject. The Deployment just runs fine. I'm using TFS 2010 and deploy the application through the msbuild arguments (/p:DeployOnBuild=True etc.).
...
3
votes
0answers
455 views
Why do the customer's shipping options not match the database or module settings in Zen Cart 1.5?
A client has a custom shipping module in Zen Cart 1.5. Yesterday I adapted the module to be zone-aware (they wanted the original module to apply to the USA, and a copy to be tweaked for non-USA ...
3
votes
0answers
595 views
What is the default ADO.NET isolation level?
I know that if I use System.Transactions.TransactionScope and don't specify an isolation level, it will default to Serializable. However, what if I'm not using transaction scope, and am just using an ...
3
votes
0answers
744 views
Firemonkey and Livebindings performance with databases
In Firemonkey, i found Livebindings engine extremely slow when binding grids with databases. It takes more than 30 seconds to fill up a grid with 5000 records and 10 columns.
I tried both ...
3
votes
0answers
78 views
Scalebase feedback (or other tool, spiderdb …)
have you ever tested scalebase or a shard facility in production?
If yes, could you make a feedback (theory vs practice)?
I look at some other techno like spiderdb and so on...
I like the solutions ...
3
votes
0answers
299 views
Quartz .NET for online game scheduling
I plan to create an online RTS game that will use Quartz .NET for updating values in a postgresql database.
Here is an example of a scenario in the game.
A player will create a building and there ...
3
votes
0answers
215 views
Creating Views in entity framework
we are using entity framework, but generating the database from the edmx file not generating the edmx file from the database. I've used views with the framework, but only when generating the edmx file ...
3
votes
0answers
468 views
Cocoa - Save profile image/avatar (png) to mysql database?
Key point here:
This is my first game, which means, I am new to develop iOS games.
My game is using game center.
From what I know, you can sign in game center on different devices, for example sign ...
3
votes
0answers
5k views
SQLite Out of Memory when preparing insert statement
I have a problem with my app it opens this database and selects rows from it ok,
Then when I want to add new rows using the following code and I always get the following problem at the execution of ...
3
votes
0answers
515 views
Getting Connection timeout in OCCI
I need to test the connectivity if the Oracle::OCCI::Connection, and how can i get and set the connection timeout value? i read the documentation of Oracle OCCI but i can't find the required ...
3
votes
0answers
138 views
Is VistaDB compatible with Microsoft Enterprise Library DAAB?
As the title asks, is VistaDB 3.x/4.x supported in Data Access Application Block (DAAB) of Microsoft Patterns and Practices Enterprise Library 3.x/4.x?
If it is and you have used the two together, ...
2
votes
0answers
36 views
Codeigniter Database results - Objects or Arrays?
I've been using Codeigniter for a good while now and i've often wondered which/whether to use Codeigniter's
$query->result() or $query->result_array()
Personally, I've tended to stick with ...
2
votes
0answers
9 views
Database storing: pure or encoded?
A simple question. How should I store telephone numbers and e-mail adresses in a database ? Just pure text (or numbers) like email@email.com or is it better to encode it with a key (a bit like how ...
2
votes
0answers
33 views
How to effectively check if an entry is present using HDBC in haskell?
Like mentionned in my question, I have an unique constraint on a table in which I want to insert some data. I have to check if the data is already present and insert it if not.
That is what I can't ...
2
votes
0answers
107 views
Implement Iterator design pattern using JDBC
I'm tackling the following question:
The iterator design pattern is one that has strong encapsulation. As an example; a library wants a book management system. A class for the books storing their ...
2
votes
0answers
23 views
symfony2 doctrine.dbal.connection_factory with ssl?
I connect to a remote database from within my symfony2 app with this code
$connectionFactory = $this->container->get('doctrine.dbal.connection_factory');
$conn = ...
2
votes
0answers
355 views
MySQL Host 'hostname' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'
My website is working perfectly on a localhost 'Wamp' server. However, as soon as I upload it to my web host for others to use, I get the following error:
Host 'stats.starfish.arvixe.com' is blocked ...
2
votes
0answers
41 views
Using of Session Database on multiple Apache Servers
I have been working on a webApp which should be able to perform tasks only by using AJAX. It seems to work pretty good, but I am running into a problem, because I do not store Session variables on the ...
2
votes
0answers
108 views
Intellij ERROR: No suitable driver found for jdbc:mysql://127.0.0.1:3306/person
first of all I couldn't find an answer from related questions in this forum. I am new to Hibernate technology and I am trying to run a basic example from this page: ...
2
votes
0answers
65 views
SQLite crashes in sqlite3DbMallocRaw
We are seeing this crash report very frequently in our iOS-targeted database framework.
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Subtype: KERN_INVALID_ADDRESS at 0x0000001a
Triggered by ...
2
votes
0answers
109 views
Select entire week in fullcalendar
im having trouble with the fullcalendar plugin where im trying to make an entire week selected in month view with just on click and then create an event of this. In other words, if you click any day ...
2
votes
0answers
67 views
ClickOnce and managing connection strings
Our application uses ClickOnce for admin-less deployment by the user to their computer.
The app has a SqlServerCE database that contains sensitive data. A requirement is that the db password be ...
2
votes
0answers
65 views
Query quirks with DB2, no-op coalesce halves the runtime
I'm working on optimizing some queries for a DB2 database. Most of them are running fine, but a few with rather large returned datasets (up to 30k rows or so) are giving me some trouble. There's ...
2
votes
0answers
57 views
Derby DB Insert Error SQL state 21000
I am attempting to insert data into a table in my database. I am using an Oracle Apache Derby DB. I have the following code-
Insert into P2K_DBA.ODS_CNTRL
(ODS_LOAD_ID, ODS_STATUS, USR_WWID, ...
2
votes
0answers
39 views
Java Database - each record has a file
Imagine a database where there's one main table with several columns - mostly of simple types (text/string, int, etc.). There is one column for a textual blob in the table.
I'm looking for a database ...
2
votes
0answers
17 views
texfield search Titanium not working
Coding a app with titanium sdk 3.0.0 and Im in the last phase before release and i cant get my textfield search to work. This is my code:
enter code here var customSearchBar = Ti.UI.createView({
...
2
votes
0answers
164 views
Is there a YAML Database?
I like YAML's data model a lot, preserving most of the simplicity of JSON and extending it with a few sometimes-important features like custom data types and references.
So is there any way to store ...
2
votes
0answers
114 views
Delphi XE3 / Multiple Connections for a single user
I am trying to figure the best / "correct" place to put the following logic in my delphi datasnap server.
A user connects to the server, and using the credentials provided I validate them using a ...
2
votes
0answers
90 views
How to set ckeditor grails plugin to use database for upload files?
How to set ckeditor grails to use database for upload files?
I just want to use database, because I cannot access file system to upload files there.
2
votes
0answers
81 views
How do I search a Google spreadsheet using a Google API or Javascript?
I used Weebly to design a basic website where users enter data into a Google Form which saves the input into a Google Spreadsheet.
I intended to use something like the below in PHP to search through ...
2
votes
0answers
68 views
How to turn off EBean enhancement
I have been using Ebean with enhancement for a while. It works most of the time but it's very brittle and really cumbersome to get the configuration right. I hope turning it off could improve the ...
2
votes
0answers
65 views
Arbitrary data input/output format — what is a good API/library/framework/…?
For my current project (all-c++), I am faced with the following problem due to the wide range of customers we'll be delivering to:
data used to configure/initialize/etc. our software may come from ...
2
votes
0answers
52 views
efficient indexing in b+tree
I faced this issue, that in nearly 10 GB txt files I must search for specific words or expressions. And I must use B+tree for that.
I also face the limitation of using memory: this allowed to use ...
2
votes
0answers
104 views
What is the right way to use a QStateMachine for a text adventure game?
I have seen a couple topics about this already but they were a bit vague for me so I decided to make this. I'm working on a little adventure game just for fun in Qt, its basically just text on the ...
2
votes
0answers
58 views
Why does database can use logical log for undo operation without considering inconsistency
For a single database operation, it may affect multiple pages. For example, an insert operation may result in page split. As a result, databases don't use logical log for redo operation because of the ...
2
votes
0answers
325 views
Database usage using stORM (ORM lightweight ORM for Android SQLite)
To understand the usage of stORM by David Chandler, i built a sample app to just insert and fetch the values from the database.
Project is like this:
I have one EditText where i enter name and click ...
2
votes
0answers
46 views
Recalling previous user's information for form autofill
I have this form a user completes and their information is transferred to the next landing page's form for lead generation so they don't have to refill another form.
is there anyway to have the ...
2
votes
0answers
144 views
How to upload database file to FTP server without server side coding
I want to make an application which has database file , and there is a button on click of which upload that database file to FTP server for backup. Help me how can i get this operation done.?





