Firebird is a free and open-source, cross-platform, client-server SQL relational database management system, running on Linux, Unix, and Windows.

learn more… | top users | synonyms

0
votes
2answers
64 views

How to assign foreign key in a master detail relationship using generator in Delphi?

As an example: I have two tables in firebird: TB_CUSTOMER IDCUSTOMER (autoincrement generator) CUSTOMERNAME TB_PHONE IDPHONE IDCUSTOMER (foreing key from TB_CUSTOMER) PHONE I have a ...
1
vote
0answers
29 views

Firebird .NET Provider 3.0.2 slow performance over LAN

Thank you for your time beforehand :) I'm in process of migrating my program WPF, .NET 4.0, SqlServer 2005 Express to Firebird. Firebird is 2.5.2 security update 1 x64, Classic Server on Win 7 x64, ...
0
votes
1answer
37 views

Group by Query within Query

I have a database running firebird. I would like a SUM of the quanity of the items by itemloc and itemcode. This data will be included in the final data with the individual serial numbers. SELECT ...
0
votes
0answers
31 views

Updates getting retained Firebird 1 with ZeosLib

Delphi Xe2 + ZeosLib 7.0.3 Stable + Firebird 1.0 I am doing updates to the several tables and data is retaining on memory. It is not reflected on the database in a way that other applications can see ...
0
votes
0answers
31 views

Auto Calculated Field on Firebird 1 with ZeosLib does not get calculated

Delphi XE2 + Zeos 7.0.3 Stable + Firebird 1.0 I am porting an old app from Delphi 5 + IBX and got this problem: I have a table that one for the fields is auto calculated: NUMERIC(18,2) COMPUTED BY ...
4
votes
1answer
44 views

Integer to Bit in SQL

I have an Integer field, and I need to divide it into Bits to the SQL(Firebird). For each byte of the Integer field should be a new field. For Example: Integer field: 7 = 00000111 Bit 1 field1: 1 ...
0
votes
0answers
14 views

How do I get user entered between dates in Shazam Report Wizard so I can use them in report titles?

I have a report in SRW where the user is entering beginning and ending dates for the IS BETWEEN comparison. I want to pull these dates that are being entered and display them in the header / title of ...
0
votes
0answers
41 views

how to make an API that connects to a Firebird Database Server? [closed]

i am working on an android application that connects to a server that runs on firebird database. i already looked for ways on how to accomplish this, the best way it seems is to make an API. can you ...
0
votes
1answer
42 views

Embeded Firebird Database and Hibernate

I am trying to use the Firebird embeded DB together with Hibernate, but I get the following error when trying to create the database: Caused by: org.firebirdsql.jdbc.FBSQLException: GDS Exception. ...
0
votes
1answer
26 views

Error creating trigger in Firebird

Trying to create a trigger to post an event in Firebird 2.5, and it's driving me nuts. Here's my trigger: CREATE TRIGGER test_trig FOR test AFTER INSERT AS BEGIN POST_EVENT 'test_inserted'; ...
-4
votes
1answer
37 views

How to display data from a database into a data grid (C# with firebird database) [closed]

I have data stored in a Firebird database. I can easily retrieve the data with an sql statement, but how do I display it in a data grid on C#?
0
votes
0answers
17 views

BIDS throws an exception trying to display blobs

I don't know if this is the correct place to ask but here goes; i've been using Microsoft SQL 2008 R2 Business Inteligence Development Studio to create an analysis service, ultimatly to build an OLAP ...
0
votes
1answer
22 views

SQL Error = -804 (C# with firebird database)

I am trying to input data from four text boxes into a Firebird database. Every time I click the button that executes the following code, I get an "SQL Error = -804 Count of read-write columns does not ...
0
votes
0answers
28 views

Entity Framework 5 CF Firebird - Same Code creates different queries

I got a huge problem with the SQL generation in my REST-Service: The following Code is generating 2 different SQL-Statements (PC Win8 vs Server 2008 R2): private void GetData() { ...
2
votes
2answers
37 views

Is there a more elegant way to compare timestamps without milliseconds?

I have a table AT_OBJECT with two TIMESTAMP nullable fields MODIFIED and CURR_MODIFIED. I need to compare them but milliseconds should not be counted. As of now I use SQL request: SELECT * FROM ...
1
vote
3answers
61 views

sum of two different rows(salary) in a table

How can i get (salary of Mr.Smith in the fist row +salary of Mr.Wong in the second row) of my Firebird sql like the following table? I tried Select sum(column a +column b) it didn't work . I ...
0
votes
1answer
25 views

Firebird: Convert date to relevant format?

I have a SQL query which uses COALESCE to choose the non-null date: SELECT ... WHERE COALESCE (date1, date2 ) >= '06/11/2013' AND COALESCE (date1, date2 ) <= '06/11/2013' The problem ...
0
votes
1answer
44 views

Firebird DDL + DML statements within a transaction [duplicate]

Is there any way to do the following in Firebird within a transaction? CREATE TABLE a (INTEGER c1); INSERT INTO a (c1) VALUES (1); DROP TABLE a If not, why not? Any workarounds? Tried ...
0
votes
1answer
44 views

Subtraction of SUM from one column

I have table look similiar to this: LocalAmount Firm_id Date StoreCard_Id 1000 5532 46,545 14124 2000 5325 46,545 13124 30000 25235 46,545 14141 1500 2525 ...
0
votes
0answers
27 views

Large scripts with variables in Firebird

I need to run a large script involving variables in Firebird 2.5. Is it possible to do this without using EXECUTE BLOCK? In .NET, using FbBatchExecution it fails with "Error reading data from the ...
0
votes
1answer
34 views

Are Variables Being Passed In This SQL Statement?

I'm developing an application that pulls information from a Firebird SQL database (accessed via the network) that sits behind an existing application. To get an idea of what the most commonly used ...
1
vote
1answer
66 views

Firebird - How to use “(? is null)” for selecting blank parameters

I am working with an Excel Report linked to a Firebird 2.0 DB and I have various parameters linked to cell references that correspond to drop down lists. If a parameter is left blank, I want to ...
1
vote
3answers
73 views

Using the '?' Parameter in SQL LIKE Statement

Beginner question here... I am accessing a Firebird Database through Microsoft Query in Excel. I have a parameter field in Excel that contains a 4 digit number. One of my DB tables has a column ...
1
vote
1answer
66 views

How can I see if a date is on a weekend?

I have a table: ID | Name | TDate 1 | John | 1 May 2013, 8:67AM 2 | Jack | 2 May 2013, 6:43AM 3 | Adam | 3 May 2013, 9:53AM 4 | Max | 4 May 2013, 2:13AM 5 | Leny | 5 May 2013, 5:33AM I ...
2
votes
2answers
94 views

how do you connect firebird database to android?

I.m working on a project. It's an android app that connects to our server database. Our server uses Firebird. I want to read data from it and display the results in an android app. I've tried looking ...
1
vote
1answer
46 views

Different Firebird query results from dev machine and production server (cyrillic characters)

I'm connecting to a remote Firebird 2.1 DB Server and i'm querying data that contains some cyrillic characters togeather with some latin ones. The problem is that when i deploy the app on the ...
0
votes
4answers
43 views

Firebird and Birt: allowing string or number as a parameter?

My report accepts one of two values: Either the string "*" which indicates ALL, or An integer indicating the person's ID So, basically, I have the query: SELECT * FROM people where personid = ? ...
4
votes
0answers
99 views

Malformed string when inserting UTF8 database

I use Delphi 2010, Firebird 2.5.2, IBExpress components. Database charset is UTF8. In db-connection UTF8. Database: var Database: TIBDatabase; begin ... Database.params.Clear; ...
2
votes
2answers
137 views

How can I use embedded Firebird in my Delphi application

My Delphi XE3 application used Interbase components to connect to a Firebird 2.5 SuperServer. I started a new project to isolate the problem, and tried to connect to my software database. The results ...
0
votes
2answers
49 views

Firebird: Using SQL to search all fields?

I have a SQL query that is going to be used to search fields that are most likely going to change a lot. I.e More fields will be added. How can I write a sql query using a simple like that will search ...
-2
votes
2answers
85 views

trigger or computed field

I wonder when I want to display result of calculating some fields in the same table should I do it as computed field or by using "before insert or update" trigger ?. Note: I found similar question ...
-2
votes
0answers
52 views

Dynamic SQL Error

Can you help me to resolve error in my SQL (split over multiple lines for readability on SO): String sql = "SELECT * FROM p JOIN u ON p.CUTIL_CREAT_2_31=u.CUTIL_2 WHERE u.CUTIL_2 ...
-1
votes
0answers
37 views

Windows installer error code 2350:for .net provider [closed]

I am trying install FirebirdClient, Windows installer.firstly i get that Error writing to file : FirebirdSql.Data.FirebirdClient.dll.Verify that you have access to that directory. Retry ...
0
votes
0answers
53 views

Tool for SQL Query monitoring and tuning? [closed]

Does anyone know any tool for performance / tuning of SQL's Firebird? I need a tool to monitor the performance of some queries, anyone know a good tool for this?
0
votes
1answer
45 views

Connecting firebird database on a local network

I made a program on vb.net and that has Firebird 2.1 as Database. I have a server also that has Firebird 2.1 and Firebird ODBC installed. What I want to do is to run the program on a client. The ...
1
vote
2answers
70 views

How to compare FireBird Database TIMESTAMP with PHP time() value?

My db has a data field of type TIMESTAMP. It's called "mytime". I get a number from php's time() function. e.g: print time(); Then I query the db: SELECT * FROM mytable where mytime > ...
5
votes
2answers
134 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 ...
4
votes
1answer
56 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
41 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
40 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 ...
-2
votes
2answers
86 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
85 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
57 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 ...
4
votes
0answers
61 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
27 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
38 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
51 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
37 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
75 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
19 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 ...

1 2 3 4 5 20