0
votes
2answers
72 views
Repositioning columns in DBGrid in Delphi
I need to dynamically change position of certain column in DBGRid. Let's say I need to place column number 21 on position 10. I use:
DBGrid.Columns[21].Index:=10;
But, this also changes the array …
0
votes
2answers
79 views
Adoconnection asks for userid and password when opened Delphi
I am trying to open an ADOConnection component. The database is in MDB format. I use JET to access it. Whenever I use AdoConnection.Open in my code the window pops up and asks for userid and pass. I …
0
votes
3answers
73 views
Wrong Result after Refresh pressed on DbNavigator Delphi
I have faced a very strange situation here.
I am accessing database (MDB) through JET. I use DBGrid and DBNavigator to allow user access it. Dataset is created using TADOQuery component, with the …
5
votes
10answers
262 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 …
0
votes
3answers
78 views
How to find list of all tables in Access Database matching certaing format in Delphi
I need to compute a list of table names in a given database (MDB format), which have certain format (for example which containt DateTime field "Date Applied"). How can I do it?
Note: I am using …
0
votes
1answer
136 views
Connect with a database over the LAN
How to connect with a database over the LAN?
I have only the name of the computer.
8
votes
4answers
167 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. …
1
vote
6answers
259 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 …
0
votes
2answers
69 views
Local connection with Database
How do I connect my local client application with the database on the server?
I am using Delphi and MySQL.
3
votes
7answers
491 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 …
0
votes
4answers
109 views
Is it possible and safe to have multiple TDataSources reffering one TDataSet descendant component ?
Hi there!
I'm designing database app with ZeosLib. On one form I have some Lookups that should refer to the same dataset. Is it safe to create one TDataSet descendant and then connect few …
9
votes
17answers
595 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 …
0
votes
5answers
156 views
Problems opening Access Database from Delphi 7
I am developing Delphi 7 application, which is operating with Access Database (MDB format). It works fine on my PC, and some other PCs as well. But on some machines application gives error when trying …
3
votes
11answers
592 views
Need an embedded/In Memory Database
Hi all,
I need an embedded/In Memory Database which support multithread access.
Thanks!
Leo
0
votes
4answers
78 views
Is it possible to use the adoquery result as a string?
Im using the ado components to connect to an ms sql database. I know how to show the result of a query in db grid. But i want to store the results as string in an array for example.
Is this possible …
