Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
3
votes
2answers
441 views

Can select … into outfile not save it into a file, but save it in blob instead

I want to do a select * from x into outfile 'c:/test.csv'. But instead of saving into an outfile test.csv I want to save it into a blob field. I'm starting the query from a client on Windows. The ...
3
votes
5answers
450 views

Using @variables:= in delphi query does not work

I have the following problem. ZQuery1.SQL.Text:= ' SELECT '+ ' IF(q.rank2 = 1, @rank:= 1, @rank:= @rank + 1) AS rank '+ ' ,q.* FROM ( ...
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 ...
2
votes
0answers
164 views

TDataset and TMemDataset

I need to iterate through a number of MySQL queries and save them in an array of TMemDataset's. This seems to do it: MemDataset1.CopyFromDataset(ZQuery1,True); However each time the query changes, ...
2
votes
1answer
225 views

Zeoslib: How to tell when query execution is complete?

I am using ZeosLib within Delphi to call a MySQL stored procedure through the TZQuery object. Immediately after MySQL finishes execution of the stored procedure I need to initiate my next block of ...
2
votes
1answer
185 views

Conversion from C++ to Delphi (simple)

I have a function in C++ that I am attempting to replicate in delphi: typedef double ANNcoord; // coordinate data type typedef ANNcoord* ANNpoint; // a point typedef ANNpoint* ...
2
votes
6answers
414 views

How can I delete the SQLite DLL when I'm finished with it if the OS thinks it's still in use?

How can I unlock or delete a file that is in use, so that I can delete it? The file in question is used by my own application. More specifically, my application is using the freeware Zeos Lib. When ...
1
vote
2answers
168 views

ZeosLib with MYSQL's shared memory protocol?

I started up my local MYSQL server with the shared memory protocol turned on. How can I connect to my server with ZeosLib? Where do I specify that it is using shared-memory? I am using ...
1
vote
1answer
147 views

Zeoslib: How to tell if query is still processing?

I am using Zeoslib in Delphi to access a local MySQL database. I call a stored procedure with the TZQuery object: ZMakeRankedTable.SQL.Text := 'CALL ...
1
vote
3answers
139 views

How to transfer a multidimensional array to a MySQL table (through Zeoslib)?

I am using the Zeoslib library in Delphi. I have a large multidimensional static array that I need to transfer to an empty table in a local MySQL database. How can I do this efficiently? Just ...
1
vote
2answers
231 views

Zeoslib - loop over calculated fields

I have a Delphi 7 project using Zeoslib 6.6.6 and Sqlite3. On the form I have a Zquery selecting everything out of a sample database table along with a bunch of calcuated fields (TFloatField; ...
1
vote
2answers
388 views

How to write LONG RAW data using OCI and Lob locator?

I want to fix zeoslib bug in writing long raw data bug description: Memo1.Lines.LoadFromFile('c:\t\ZDbcMetadata.pas'); // file size ~ 170Kb ZQuery1.SQL.Text := 'insert into t1(id, b) values(10, ...
1
vote
1answer
756 views

Firebird Insert Distinct Data Using ZeosLib and Delphi

I'm using Zeos 7, and Delphi 2009 and want to check to see if a value is already in the database under a specific field before I post the data to the database. Example: Field Keyword Values of ...
0
votes
0answers
68 views

ZeosLib with MYSQL's shared memory protocol or named pipes?

I am trying to connect to my local Windows MYSQL DB via named pipes or shared memory, but I am getting a connection error. SQL Error: Can't connect to MySQL server on 'localhost' (10061) This is the ...
0
votes
1answer
387 views

Keep RichEdit Formatting as a String?

I am assigning a string to a custom type I have declared, which I Read/Write using the TTreeViews Node.Data property. I read and write to and from the node, something like this: Read: ...
0
votes
1answer
437 views

BDS2006 and Zeos installation

I recently installed Zeos 6.6 stable on BDS2006 for both the Delphi and C++ personalities. In order to do so, and since Zeos is written in Delphi, I checked the "Generate all C++ Builder files" when ...
0
votes
1answer
660 views

Unicode filenames with zeos / sqlite

I need to save data in sqlite databases with user-chosen filenames. This includes unicode filenames. Is there a way to specify this in the Zeos components in Delphi?
-1
votes
2answers
132 views

Rad Studio Delphi XE and PostgreSQL

I'm starting a new project, and this must be done in Delphi, so we get Rad Studio XE (not XE2). I have never wrote code in Delphi, I'm a C#.NET-MSSQL experienced programmer, that's why this project is ...