0
votes
2answers
10 views
Generate Symfony fixture yml from database data
I was wondering if anyone knew how to generate a fixture.yml from data that is already existing in the database?
As you can use the build-schema to generate a schema, is there a w …
1
vote
6answers
170 views
How Should I Implement a Huge but Simple Indexed StringList in Delphi?
I am using Delphi 2009. I have a very simple data structure, with 2 fields:
A string that is the key field I need to retrieve by and is usually 4 to 15 characters in length.
A st …
0
votes
1answer
20 views
Find out which DBMS belongs the file
I've an application, that uses encrypted (txt) files to store data. After investigating the decompiled assembly I concluded that it's a file of some DBMS. So how can find out which …
-1
votes
1answer
9 views
Copy/Move an object from another person, what to do with createdBy/On and modifiedBy/On
If you copy or move an object that somebody else created, what should you do with the createdBy, createdOn, modifiedBy and modifiedOn?
With move, I would change the modifiedBy and …
0
votes
0answers
19 views
Web-App : Keeping trace of the version of the application in database ?
Hi,
We are building a webapp who is shipped to several client as a debian package. Each client run his own server. But the update and support is made by us.
We made regular realea …
1
vote
6answers
242 views
Large Sqlite database search
How is it possible to implement an efficient large Sqlite db search (more than 90000 entries)?
I'm using Python and SQLObject ORM:
import re
...
def search1():
…
1
vote
8answers
216 views
python database / sql programming - where to start
What is the best way to use an embedded database, say sqlite in Python:
Should be small footprint. I'm only needing few thousands records per table. And just a handful of tables …
1
vote
1answer
45 views
Is F# database programming the same as C# database programming?
For f# to talk to a database, I presume you turn to some code that looks quite a lot like C# code, using some NET libraries (ado.net for example) and quite a lot of imperative code …
2
votes
2answers
27 views
PHP: display entries from Database in groups of five?
Hi,
Is it possible and if so, how can I do it, to select all entries in a table in my database and then display five results at the time in one group.
Meaning: A example is that …
0
votes
1answer
11 views
Oracle JDBC connection pooling with databae link
Hi all,
I'm building a J2EE web apps with Oracle database. The app server uses JDBC connection pooling to Oracle database A (e.g. 20 connections max), and some of the queries per …
0
votes
1answer
122 views
How to get an AutoNumber from DataTable AutoIncrementColumn with a Strongly-Typed Database in c#?
I have added a strongly-typed Database (MySQl) to a C# (.net 3.5) project. The database (DB.Electrophysiology_Data) has several relational tables but basically I want to add a new …
0
votes
2answers
34 views
How can I validate a field which is to be inserted into a float column in the database? [closed]
I have a field entered by the user and I need to validate it to ensure it will be okay to insert into a column in my database.
What is the best way to do this?
Please provide you …
1
vote
5answers
43 views
update data from one table to another (in a database)
DB gurus,
I am hoping someone can set set me on the right direction.
I have two tables. Table A and Table B. When the system comes up, all entries from Table A are massaged and c …
0
votes
0answers
18 views
Self-Referential ManyToMany Convention in CakePHP
I have an existing data model where I can rename things freely to match CakePHP's conventions. I have a type of graph node, where a node can have an arbitrary number of child nodes …
0
votes
4answers
22 views
Button Element with Type Submit & PHP Challenges
Recently I change from <input type="button"> to <button> in my forms however the form being processed by PHP wouldn't then submit to the database. Am I missing somethin …
