Tagged Questions
The nexusdb tag has no wiki summary.
5
votes
1answer
307 views
Fast read of a Nexus database table
I want to read the entire contents of a table into memory, as quickly as possible. I am using Nexus database, but there might be some techniques I could use that are applicable to all database types ...
3
votes
4answers
573 views
Firebird or NexusDB
I know that there are many Delphi database related questions available, but I'm considering only these two databases. I will need to query around 100.000 records.
From your experience which one is ...
2
votes
3answers
339 views
Fastest way to locate record in TQuery resultset
I am wondering what the best (read: fastest) way is to locate a record in a resultset of a Tquery SQL statement.
Until now i'm using TQuery.Locate and if i'm right that is the only statement that can ...
2
votes
1answer
141 views
TDataSource TDBMemo not in Insert or Browse mode
I have a DBLookupComboBox that lists values from 1 table that I'm selecting a value from.
When the value is selected, I want the 2 DBMemo Boxes I have to be able to input/edit into to insert/update ...
2
votes
4answers
174 views
SQL question: excluding records
I have a database (NexusDB (supposedly SQL-92 compliant)) which contains and Item table, a Category table, and a many-to-many ItemCategory table, which is just a pair of keys. As you might expect, ...
1
vote
1answer
115 views
How can I open .DB7 data files?
I've got a bunch of files with DB7 extension, coming from a customer's software.
Each one of them is related to a database table.
What I want is to export data in a more practical format, such as CSV.
...
1
vote
3answers
463 views
Accessing NexusDB from Java
I am trying to get info from an embedded db called NexusDB using java.
Alternative 1:
I've read in NexusDB website that there is an ODBC driver so I might use it with unixODBC. Then I need to do a ...
0
votes
3answers
167 views
Retrieving metadata of the result of a TQuery
In our application a user can enter SQL code to retrieve data from a NexusDB database.
We want to determine the metadata of the result of such a query without actually executing the query. We use the ...
0
votes
2answers
959 views
Access sqlite database on android device
I'm trying to access the sqlite database file on the device. I mean, I've launched the app on the device via adb. And now I wanto to download this file as I did before on emulator via DDMS. But when I ...
0
votes
1answer
464 views
DBLookupComboBox and Refreshing of Contents
I have Delphi 7 and I'm using NexusDB for the database.
I have a main form where I have a DBLookupComboBox to list the contents of a Table.
If I press a button I have on the form to add a new item ...