Tagged Questions

24
votes
26answers
9k views

Which embedded database to use in a Delphi application?

I am creating a desktop app in Delphi and plan to use an embedded database. I've started the project using SQlite3 with the DISQLite3 library. It works but documentation seems a bit light. I ...
14
votes
23answers
4k views

Best database for small applications and tools

What is the best database for small applications and tools? I used paradox, moved to SQL Server, now I use Blackfish. But are there other small and free databases for small applications and tools. ...
12
votes
18answers
1k views

Recommendation needed for good database for Delphi desktop app

I am creating a desktop application written in Delphi and I am looking for a database for my application. I'm a bit overwhelmed by the number of available options. I'd really appreciate some ...
11
votes
4answers
499 views

How to use Data aware controls “correctly”?

I would like to ask experienced users, if you prefer to use data aware controls to add, insert, delete and edit data in DB or you favor to do it manualy. I developed some DB applications, in which ...
9
votes
1answer
581 views

ClientDataset.RefreshRecord no longer works in Delphi XE for joined tables - any workarounds?

TClientDataset.RefreshRecord no longer generates the table join part of SQL when trying to refresh a record on a ClientDataset connected to a dataset with a joined table in the SQL statement. As a ...
9
votes
2answers
722 views

Delphi and NoSQL

Have anyone ever used Delphi with NoSQL databases like Mongo, CouchDB or others? Which one would you recommend?
9
votes
6answers
1k views

What are the best practices for database development with Delphi?

How can I use the RAD way productively (reusing code). Any samples, existing libraries, basic crud generators? How can I design the OOP way? Which design patterns to use for connection, ...
8
votes
3answers
248 views

What databases for Mac are directly supported by the FireMonkey framework in Delphi XE2?

Confronted with the task to develop a database application for a company working in a pure Mac environment, what are my options for a central database server to be used by a Delphi FMX application ...
7
votes
2answers
1k views

How can i add fields to a clientdataset at runtime?

I have aTClientdataset, which is provided by a TTable’s dataset. The dataset has two fields: postalcode (string, 5) and street (string, 20) At runtime I want to display a third field (string, 20). ...
7
votes
10answers
752 views

Delphi embedded DB

I need a SMALL/LIGHTWEIGHT DB control (maybe delivered as a single PAS file) that I can integrate directly into my application. I need to store relatively small amounts of data in a small number of ...
7
votes
5answers
1k views

Preferable way to write Delphi database apps with transactions & data-aware components

What is the preferable way to write Delphi database applications using transactions and also data-aware components? I have to write a client app that access InnoDB tables, and do some master-detail ...
7
votes
2answers
451 views

Database application using MVC paradigm

In classic Delphi database application we have a form, a set of data-aware visual controls connected to TDataSets via TDataSources. If one wants to design database application using MVC model, where ...
7
votes
2answers
380 views

How to properly access query-results created in background thread?

I want to execute a database query in a background thread. The OmniThread library will help me with all the thread stuff, but there is one thing I don't understand so far: Every thread needs a ...
7
votes
4answers
576 views

Database versioning in installed applications using Delphi

I'm working on a number of Delphi applications that will need to upgrade their own database structures in the field when new versions are released and when users choose to install additional modules. ...
7
votes
5answers
2k views

Advice on moving to a multi tier Delphi architecture

We have a relatively large application that is strongly tied into Firebird (stored procedures, views etc). We are now getting a lot of requests to support additional databases and we would also like ...
6
votes
8answers
1k views

Database connectivity Delphi

I'm using delphi for years, but never for database stuff, but recently started researching and testing. I must say, i'm impressed, most of things happens automatically, i'm used to write by hand in ...
6
votes
10answers
679 views

Looking for a local database for D2009+

I'm trying to update a legacy app that does all its data storage in a hacked-together system of BDE Paradox files. The program works pretty well, under certain narrow conditions, but it has serious ...
6
votes
10answers
1k views

Exchange Data between two apps across PC on LAN

I have a need of implementing two apps that will exchange data with each other. Both apps will be running on separate PCs which are part of a LAN. How we can do this in Delphi? Is there any free ...
6
votes
11answers
2k views

Need an embedded/In Memory Database

I need an embedded/In Memory Database which support multithread access. Thanks! Leo
6
votes
7answers
1k views

Where to start OOP in Delphi mainly focusing on database development?

I want to isolate database code from GUI design. For a reasonable time I've been reading/searching/skimming on topics like mgm/mvp/mvc/persistence/objects etc. I really have difficulty in designing a ...
5
votes
4answers
298 views

In Delphi should I use multiple database inserts from within a loop or use a stored procedure?

I'm looking for the best way to handle this situation. I want to store an amortization schedule inside a databse table. Each row contains the date, current balance, payment, pricipal, interest, and ...
5
votes
4answers
1k views

Delphi DataModule Usage - Single or Multiple?

Hello I am writing an application, there are various forms and their corresponding datamodules. I wrote in a way that they are using each other by mentioning in uses class(one in implementation and ...
5
votes
7answers
2k views

What Is The Best Database For Delphi Desktop Applications That Supports Stored Procedures?

I started with Turbo Pascal 3, went to TP5, Bought TP6 called Borland the next day and downgraded to TP5.5. Bought Delphi 3, and now have Delphi 5 Enterprise. I sort of lost interest in writing code ...
5
votes
6answers
1k views

ADO or DBX using Delphi

Which is better (and for what reasons) to use to connect to MS SQL, Oracle or Firebird from a Delphi Win32 application -- ADO or DBX (Database Express)? Both allow you to connect to the major ...
4
votes
3answers
160 views

Is there any way to remove automatically all leading and trailing spaces in text fields

In a Delphi application which uses TADODataSet components to access to an Access database, there is any way to delete leading and trailing spaces from text fields when record is written to disk? or ...
4
votes
7answers
896 views

Best Database selection for Client/Server Application (Multiuser) with Delphi?

i want to code a software with Delphi XE, that will be able to connect to a server and users should be able to read/write the database. All records will be string (unicode enabled), maybe small amount ...
4
votes
7answers
633 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 string that is the ...
4
votes
3answers
2k views

Delphi - adjusting thread sleep time

There are several threads in my application that work in the background. They connect to database and execute some time consuming select queries. In most of cases these queries return only several ...
3
votes
3answers
63 views

How to focus a record near a record you've just deleted in DBgrid Delphi?

I use TDBgrid in Delphi and the Dataset is Adoquery. I have many record which have the ID from 1 to 1000. Now for example I want to delete the 35th by TadoQuery 'Delete from...' Is there any way to ...
3
votes
3answers
252 views

How can I tell what Database format a file (or set of files) was created with (in Delphi)?

I have a number of data files created by many different programs. Is there a way to determine the database and version of the database that was used to create the data file. For example, I'd like to ...
3
votes
1answer
165 views

Display a (Synopse) SQLite3 table-column in a Delphi7 TListView

I would like to take the following unit (DrivesData) and display the drive column in a TListView. I've never worked with the (Synopse) SQLite3 code before so I'm hoping someone could give me a little ...
3
votes
2answers
191 views

Reversing the Master-Detail connection in Delphi

I have 2 tables which are connected using master-detail connection. I need the connection reversed on creation of Form2 - so the master table becomes the detail table, and the detail table becomes the ...
3
votes
4answers
2k views

How to access databases from within Delphi XE Professional IDE?

I cannot access ANY database by ANY means from within Delphi XE Professional. What I mean by accessing the data base is: having the live database appear via components in the Object Inspector, when ...
3
votes
3answers
297 views

Visual Database Design Delphi VCL components?

I'm looking for a Delphi VCL component that allows my customers to visually create a database, that is, tables, fields, indexes, etc. Something like this: ...
3
votes
1answer
1k views

Delphi: how to create Firebird database programmatically

I'm using D2K9, Zeos 7Alpha, and Firebird 2.1 I had this working before I added the autoinc field. Although I'm not sure I was doing it 100% correctly. I don' know what order to do the SQL code, with ...
3
votes
4answers
1k views

Insert data into database [Delphi]

I'm trying using a TAdoTable component, On form Create I call .Append() and in a button i call .Post() but it loads the entire table! I don't need it to load anything, just need to insert a row ...
3
votes
2answers
297 views

One active IB transaction the whole lifetime of a single user application

Are there any negative impacts when a single user application uses only one IB transaction, which is active as long the program runs? By using only CommitRetaining and RollbackRetaining. Background: ...
3
votes
1answer
2k views

Delphi: How to get the value of an output parameter of a stored procedure?

I want to programatically create a SQLDataSet in Delphi and use it to execute a Stored Procedure and get the value of an output parameter. Looks easy but I can't make it work. Here is a dumb stored ...
3
votes
4answers
2k views

possible type of database that uses dat, idx files

i have an application that was written in delphi it is fairly recent, running on win32 i want to hook into the database with odbc but i am unsure which database driver to use the directory with the ...
3
votes
5answers
1k views

Storing SQL field names and general SQL usage with Delphi

I'm starting to write my first Delphi application that connects to an SQL database (MySQL) using the ADO database components. I wondered whether there was any best way of storing the names of the ...
3
votes
3answers
674 views

What is the best Commercial Database Application

What is the best commercial database application to create the database structure for a simple local database with one linked table that can create Access, Paradox and dBase files these days? Access, ...
2
votes
7answers
229 views

Appropriate Database to store 20 GB for Delphi, Firemonkey

I don't have experience in database development, so I need your suggestions in choosing of a database that can be used in Firemonkey. I need to store html files (without media now, but they can be ...
2
votes
0answers
231 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 ...
2
votes
1answer
181 views

Connecting to external database in iOS

I know I can use SQLlite and of course a clientdataset, but.... How do I connect to an external database over the internet in iOS using Firemonkey?
2
votes
2answers
306 views

dbExpress vs native Drivers

I was reading Holgerwa's question and I have a question. Is there any significant performance improvement by changing from dbExpress to other driver specific? Can we use dbExpress and still use ...
2
votes
3answers
162 views

Dynamically put checkboxes on form

I have a table in DB with information about some goods. Goods may be fillable, so we can add text to it. So I want to dynamically generate a list of checkboxes related to info in table and even some ...
2
votes
5answers
426 views

Delphi: Internet Based Data Source

I have a database client application that runs on a LAN connected to a SQL Server database on the network. I now want to move the database online to a hosted internet server, however, continuing a ...
2
votes
3answers
133 views

Need to migrate an application from Blackfish to Firebird

What is the effort to migrate from Blackfish to Firebird ? I use DBX4 No storeProcedure, or function or views I access all my data trough SQL queries
2
votes
10answers
545 views

Delphi and storing database

I want to develop a Delphi application which must use a Database, I firstly think to INI Files but the access is slow and are limited in entries stored. I tries, but not successfully to used MyBase, ...
2
votes
1answer
348 views

Delphi Copy Row

I use this code to copy row from table1 to table2 but its give me "Command Text does not return a result set". ADOQuery1.Close; ADOQuery1.SQL.Clear; ADOQuery1.SQL.Add('insert into Table1'); ...

1 2 3 4