Firebird is a free and open-source, cross-platform, client-server SQL relational database management system, running on Linux, Unix, and Windows.
5
votes
2answers
83 views
Entity Framework Generates different queries on different workstations
We have problem on single Developer Machine and a few clients.
Single Linq Query Generates two different SQL queries. The problem is in fact that second query has “OUTER APPLY” statement which ...
1
vote
0answers
32 views
Ruby can not find the module (LoadError) under Windows
I tried to connect to the database using Ruby (under Windows).
For that:
install Ruby in C:\Ruby193
install devkit (c:\ruby193\devkit). Run "ruby dk.rb init", "ruby dk.rb install"
downloaded ...
2
votes
2answers
25 views
Populating ASP.NET SqlDataSource from a Firebird 2.0 Stored Procedure
I am working on a project where I do not have any control over the versions of products that I have been asked to work with.
I am building an ASP.NET user control. Data is retrieved via ...
0
votes
2answers
31 views
SQL: Get first entry in aggregation function?
I have a simple table:
ID - JID - AMOUNT
1 - 1 - 100
2 - 2 - 50
3 - 2 - -25
4 - 3 - 100
5 - 3 - -50
I want to end up with:
JID - FIRSTBALANCE
1 - 100
2 - 50
3 - 100
Because ...
-1
votes
1answer
34 views
select from firebird db insert into mysql db using php
I am trying to get some data form a Firebird db and put into a MySql db using PHP.
My problem is that my SELECT have 3847 rows and the code just INSERT 981 rows!!!
Here is my code, I took off ...
3
votes
4answers
64 views
SQL - How to do a group by without having to pass all the columns from the select?
I have the following select, whose goal is to select all customers who had no sales since the day X, and also bringing the date of the last sale and the number of the sale:
select s.customerId, ...
2
votes
2answers
36 views
Query Firebird database schema with FirebirdClient
How can I query database schema in C#/ADO.NET/FirebirdClient? All classes in namespace Firebird.Data.Schema are internal.
For example:
check if table has column with specified name
query number of ...
3
votes
0answers
50 views
Do inserts block selects in firebird?
We are running some tests on firebird. When we insert, we notice that if we open a second sessions, that session hangs. So inserts appear to block selects.
is there an option of some sort to enable ...
0
votes
1answer
18 views
Multiple triggers don't work on firebird
create trigger tr_buFile_fileid for BUFiles before insert as
begin
IF (NEW.FileID IS NULL) THEN NEW.FileID = GEN_ID(FileID_generator, 1);
end
create trigger tr_buFile_insert for BUFiles after insert ...
1
vote
0answers
28 views
Temporary fields in Firebird
Is there temporary fields in Firebird 2.5? When I:
INSERT INTO table (..., tmp, ...) (..., val, ...)
I need something like this in before-insert trigger:
...
new.field1=(SELECT t2.id FROM table2 ...
1
vote
1answer
43 views
I can't insert multirow in firebirdsql
I know in sql server to
Insert into table ( id, name) values ('1', 'John'), ('2','Peter');
but in firebid 1.5 i don't know how to insert the values.
I tried with
Insert into table ( id, name)
...
0
votes
0answers
29 views
Checking for non-null (or null) result set for Firebird with PHP5
So, I haven't used firebird for that long, but i'm writing a search engine for a database we have. There is a field that required you to ask for a reason the record was changed if you edit the record ...
1
vote
0answers
70 views
How to discover or deduce FK relationships when none were declared in the table definitions
At my work We have a Data management application used with firebird database which has 65 tables and 1.3 Million records. The person who developed the application and the Database is long gone. We are ...
0
votes
0answers
17 views
How ibase_restore working with php?
I'm trying to restore a Firebird database using ibase_restore, and I get nothing. I found no documentation on the internet. I need help!
This is the code I used, with the gbak command from console I ...
0
votes
0answers
22 views
Firebird 1.5 : Duplicate columns in a table
I noticed that Firebird creates duplicate columns for a single table, thus incorrect indices are being used in the query which cause query to be slow. Please example below.
I have 2 tables with the ...
-2
votes
2answers
98 views
How to select columns from 2 tables in a Firebird database using zquery? [closed]
I would like to display on a TDbgrid data from 2 tables on a single database file. I have tried to write sql statements like:
select "Client", "Address", "Balance" from "table1"
and "Payment" from ...
0
votes
2answers
65 views
Using Firebird within Visual Studio?
I am working on an Asp.Net Web application project. Now I try to add a chart using data from a database (Firebird).
chart tasks-> configure data source -> new connection -> change data source
I see ...
1
vote
1answer
63 views
c# how to programmatically create firebird database?
I have COMPUTER_WITH_DATABASE where is superserver firebird (windows) installed.
Now i need to make c# application which will connect to this COMPUTER_WITH_DATABASE and create file .fdb like for ...
1
vote
3answers
157 views
TDBGrid doesn't update when multiple users are editing it
I am developing an application which has a simple database. All of the functions are going well but when a user is editing the database from the program, the other user cannot see the content ...
0
votes
0answers
65 views
C#, Firebird, load .fdb file into RAM?
If i have c# application and using it with embedded firebird, can I load this .FDB file, database file not on disk, but only into memory, into RAM?
I need it to be encrypted, decrypt it but not save ...
1
vote
1answer
31 views
firebird 2.5 wait for one trigger from another
In table 1 I have trigger 1 that inserts in table 3 with trigger 3 that uses results of trigger 2 in table 2.
Is there is a way in Firebird 2.5 to lunch trigger 1 in table 1 only after trigger 2 in ...
0
votes
1answer
38 views
Firebird Embedded for web?
I am evaluating some database options for a Web project. I wonder if the version of Firebird Embedded is stable for this type of development (Web).
I was thinking about the Firebird server version, ...
0
votes
2answers
30 views
FireBird: combine upper with primary key constraint
I want to use case insensivity in more tables which came from other DB where the fields and indexes can be case insensitive.
This means that we can search the needed row in any string format (DAta, ...
1
vote
0answers
43 views
entity framework won't import my firebird stored procedure
I am using EF for .NET 4 and the firebird .NET provider 3.0.2.0 with Firebird 2.5.
I have created a stored procedure as follows (DDL from IBEXPERT):-
SET TERM ^ ;
create or alter procedure ...
2
votes
0answers
102 views
How to execute a block statement in C# for Firebird
I am trying to delete all tables in a database in Firebird using the following command:
string dropAllForeignKeysSql =
"EXECUTE BLOCK RETURNS (stmt VARCHAR(1000)) AS "+
"BEGIN "+
"FOR "+
...
2
votes
1answer
202 views
Convert WideString to String
How can I replace the empty widestring characters from a string?
e.g:
'H e l l o' convert to 'Hello'
I read an text blob field from a DB, and want to store it in another table. When I read it, I get ...
0
votes
1answer
23 views
Connecting to a firebird superserver on windows using sqlalchemy
I am trying to connect to a firebird super server.I have the fdb package installed.
I am trying
from sqlalchemy import create_engine
engine = create_engine ('localhost:c:\fdbb\school.fdb')
I get ...
6
votes
1answer
80 views
Does order of items in an SQL: WHERE IN () matter?
Does the order of the values in a WHERE IN clause matter? (this is on Firebird SQL if that is important)
Such as does:
where field1 in (1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
offer a performance increase ...
-1
votes
0answers
44 views
Release repeat in future periods [closed]
To a challenge here, thinking and thinking I could not find a viable solution or elegant.
As an example Google Calendar has a repeat option (always) how often an event that every Monday,
ie on any ...
0
votes
1answer
33 views
Error installing firebird RDBMS bindings package on windows
I am installing the fdb package on windows
This package
https://pypi.python.org/pypi/fdb
and i get this error
C:\fdb>python setup.py install
Traceback (most recent call last):
File ...
0
votes
0answers
35 views
Doctrine + Firebird via PDO
as everybody knows, Firebird is again added to official build of PHP, and has it's own PDO extension. I thought about connecting it with Doctrine2. Officialy, website of Doctrine2 project says that ...
1
vote
1answer
35 views
Firebird .NET Provider GUID conversion
I have a table with a primary key which is char(16) using the OCTETS char set.
It is filled with the contents of
select gen_uuid() from rdb$database
I have generated a dataset in VS. When I look ...
0
votes
0answers
53 views
Delphi Access violation when I call TIBDataset append procedure
What am I missing? The error message:
Access violation at address 0053CC2B in module 'application.exe'. Read of address 00000000.
is intermittent. I can not find the reason for the nil pointer ...
0
votes
1answer
66 views
Database for Web Application [closed]
I want to start a web project in ASP.Net and still not decided which database to use. I have had experience with MSSQL and Oracle, but I want one that is free to the end user.
My options are: MySQL, ...
0
votes
0answers
57 views
Firebird NET Provider and Visual Studio 2012
I've installed Firebird NETProvider and DDEXProvider on Windows 8 Enterprise (64-bit) with Visual Studio 2012 Premium successfully: I added a connection in Server Explorer and was able to see the ...
2
votes
1answer
51 views
FireBird 2.5: Does BLR contain the related field sizes?
As I know FireBird and InterBase keeps the stored procedures and triggers in BLR (tokenized) format.
But I not really know that what contains the BLR.
Is field size the part of the BLR?
Would I get ...
2
votes
1answer
52 views
What are those full-blown abstraction layer for PDO and how to work it with Firebird? [closed]
As MySQL manual says:
"PDO provides a data-access abstraction layer, which means that, regardless of which database you're using, you use the same functions to issue queries and fetch data. PDO does ...
1
vote
0answers
51 views
Firebird database connection set with TIBConnectionBroker Component
Does anyone know of any database component sets for connection to Firebird database's with a component similar to the TIBXConnectionBroker in the IBX connection Set?
I know the IBX can connect to ...
0
votes
0answers
140 views
how to build table relationships in a firebird database?
I am a beginner in Delphi and I have a Firebird database with 2 tables namely masterlist and daily collection. I used Zeos 7.0.3 to access my firebird database.
My masterlist contains the following ...
0
votes
1answer
56 views
Firebird, query in c#, different queries on different values, how to construct and simplify it?
Have checkbox for month, checkbox for year and
following code (pseudo code):
if(month.checked) query = select* from tab where month=month.text;
if(year.checked) query = select* from tab where ...
2
votes
1answer
154 views
Using TIBDatabase to connect to a Firebird 2.1 database on Delphi XE3
Is it possible to use Interbase components to connect to a Firebird 2.1 database?
I am migrating my software from delphi 7 to XE3 and I use IBX components wich seemed to me that would be updatable to ...
0
votes
1answer
70 views
IBO and Firebird Save To Blob Field By Params [closed]
I want to save a picture from TImage to blob field by params. I've search around the net but I can't get it.
I try: params[1].LoadFromFile(PicPath). It works but I just want to stream from TImage.
...
1
vote
1answer
48 views
Firebird / Entity Framework foreign key names
Using the Firebird .NET Provider and Entity Framework (code first), foreign key names seem to be of this convention:
FK_MyNetClassName1_MyNetClassName2
This makes it very easy to go over Firebird's ...
0
votes
1answer
31 views
FireBird isql error dont show in output file
When I run isql whith script file:
isql.exe -q -e -i %1 -o %~n1.log
Then in output file I see commands, but error of command I see in the screen when it run.
Error doesnt put in output file.
How ...
0
votes
1answer
41 views
How to extract weighted average values?
Lets suppose i have such table:
IDofemployee category value importance range date
1 1 2 5 1 2013-04-17
1 1 3 4 2 2013-04-17
...
0
votes
3answers
68 views
Firebird: how to set initial generator value?
I need to initialise a new Firebird generator / sequence to the max primary key value of an existing, 'old' table. I tried the following but it is not working, I get the error "Token unknown - line 6, ...
1
vote
1answer
50 views
Group by is null or not?
I want to count how many records in Firebird database have timestamp field null or not null. How to do it?
Something like this:
select RECORD_TYPE, count(*), (MY_TIMESTAMP IS NULL) from MY_TABLE
...
1
vote
0answers
82 views
Multiple websites in IIS with native dll use 100% or core CPU
I have an application which makes uses of firebird embedded. There are five instances of this application in IIS all in the same Application Pool.
Whenever one of the sites in the pool is stopped or ...
2
votes
2answers
134 views
Delphi - DB Refresh alternative
I am using Delphi with Firebird DB in a software that display many calculations and according to requirement I need to store and display the total whenever other dependent tables gets updated.
I am ...
0
votes
1answer
23 views
Error running script
I have a Firebird SQL script as follows :-
ALTER TABLE COSTCENT DROP ROW_VER;
ALTER TABLE COSTNUMB DROP ROW_VER;
When I run it in ibexpert, I get the following error :-
Invalid token.
Dynamic SQL ...




