Questions tagged [fibplus]
29 questions
1
vote
2 answers
Porting an IBXpress Interbase 6 app to the current Firebird platform, on Delphi 7?
Just wondering if there are any gotchas to be wary of here. We have a legacy D7 app that we developed several years ago for a client, which uses IBXpress to talk to the open source Interbase 6 build.
We're having a number of issues with that…

robsoft
- 5,525
- 4
- 35
- 47
1
vote
1 answer
Delphi - DBGrid does not display UTF8 calculated field
I have a TDBGrid linked to a TDataSource with a TFibDataSet behind. On the OnCalcFields of the dataset I'm trying to add the string 'Russisch (русский)'.
procedure TForm1.pFIBDataSet1CalcFields(DataSet: TDataSet);
begin
…

RBA
- 12,337
- 16
- 79
- 126
1
vote
1 answer
Is it possible to have a detached TpFIBDataset for FIBPlus?
I remember that when I was working with ADO for Delphi (dbGo) there was a possibility of creating a detached dataset. The idea was that I could read all the data which I wanted from database and then set the connection property to nil. That caused…

Wodzu
- 6,932
- 10
- 65
- 105
0
votes
1 answer
Read uncommitted using Firebird FIBPlus components
Using a TpFIBTransaction component, I'm trying to start a READ UNCOMMITTED transaction.
First of all, the TPBMode property has 3 possible values:
tpbDefault
tpbReadCommitted
tpbRepeatableRead
In TpFIBTransaction.StartTransaction I saw that setting…

Fabrizio
- 7,603
- 6
- 44
- 104
0
votes
0 answers
AnyDAC components execute SQL query slower than FIBPlus components
The following SQL command returns approximately 4.500 records and contains integer-, string- and blob (text) values. All indexes are set properly. Furthermore we know that the in clause is not the best but that shouldn't bother us right now. The SQL…

Mr.Darcy
- 11
- 2
0
votes
1 answer
How to add all fields without opening dataset?
I'm using TFIBDataSet (Firebird dataset component) and I'm trying to automatically create all fields at runtime, without loading any record into the dataset.
Here is the code of my test:
uses
FIBDatabase, FIBDataSet, Dialogs;
...
var
Db :…

Fabrizio
- 7,603
- 6
- 44
- 104
0
votes
1 answer
Sorting DBAdvGrid with FIBDataSet by clicking on the column header
The only solution to the above problem i've found is to attach "ORDER BY" statement to the SQL-query of the FIBDataSet. Kind of strange because Grid has it's own quicksort() implementation but i can't get it work. Any ideas would be appreciated.
alex.d
0
votes
1 answer
Issue with posting correct data with disablecontrols
I have been having some issues with using Disable/EnableControls() while iterating over a DataSet, namely when updating field(s).
What seems to be happening to the two updated fields, is that they are all taking the same data. It looks like the last…

MrRobot
- 169
- 3
- 10
0
votes
1 answer
"Transliterate = False" About TFIBDataset Component
I am using TFIBDataset component with Delphi 2010.
Whenever I just open a form on which I have kept TFIBDataset component(s) and close the same form without doing any changes, and if try to compare that .dfm file with same file in code repository, I…

Vishal Tiwari
- 739
- 2
- 12
- 28
0
votes
0 answers
How to fix Ambiguity between ' DWORD ' and ' Fibplatforms:: DWORD
I am working with FIBPlus Components in RAD Studio XE4. During compilation I have ambiguity errors. Someone proposed to fix it in this link but it did not work.
Here are the errors
[bcc32 Error] ws2tcpip.h(162): E2015 Ambiguity between 'DWORD' and…

Suhrob Samiev
- 1,528
- 1
- 25
- 57
0
votes
1 answer
SQL WIndow Not Displaying for FIBDataset Component
I am facing a strange problem, when I click to see SQL of TFIBDataset component, then the window seems to be open but not visible, coz once it is open i can't click in Delphi until I press Esc key. I tried pressing Alt + Tab key, but no use. then I…

Vishal Tiwari
- 739
- 2
- 12
- 28
0
votes
1 answer
How to make settings in FIBPlus Tools Preferences?
I am using FIBPLUS 7.5 with Delphi XE4. I want to make some changes in the settings of FIBPLUS Preferences. I am following this article of Devrace:
http://www.devrace.com/en/fibplus/articles/4763.php
But I am unable to find and open the screen…
user1556433
-2
votes
1 answer
Is there FIB Plus Component Available for Delphi XE5?
In my current project Delphi 2010 with Firebird latest version used. Also used FIB Plus 7 to connect to firebird.
There is a plan to go for Delphi XE5.
Any suggestions whether support for Delphi XE5 with FIB Plus available or any good alternatives…

Vishal Tiwari
- 739
- 2
- 12
- 28
-2
votes
2 answers
Strange behaviour about "Dataset Not In Insert or Edit Mode..." Error
I am using Delphi 2010 with TFIBDataset components.
I am facing a very strange issue, I have two TFIBDataset components called DS1 and DS2.
When I am trying to post the data in DS1 as below:
DS1.Post;
I get the error saying that "Dataset Not In…

Vishal Tiwari
- 739
- 2
- 12
- 28