Tagged Questions

InterBase is a SQL standard database system for server, desktop and embedded applications, for installation on Windows, Linux, Solaris and Mac OS X. It is currently marketed by Embarcadero Technologies which acquired it from Borland and its successors.

learn more… | top users | synonyms

6
votes
3answers
497 views

Firebird 2.5 VS Interbase 9/XE - which performing faster?

We are on a situation where we must choose between thoose 2 databases. We are currently on Firebird, but sometime it lag because of it stacking too much transaction history or something and ...
4
votes
3answers
417 views

Firebird backup restore is frustrating, is there a way to avoid it?

I am using Firebird, but lately the database grows really seriously. There is really a lot of delete statements running, as well update/inserts, and the database file size grows really fast. After ...
4
votes
3answers
590 views

How to restart Interbase

I try to follow http://edn.embarcadero.com/article/28604 for restarting Interbase. Here is some code: program IBRestart; {$APPTYPE CONSOLE} uses SysUtils, winsvc; var vManager, vService: ...
3
votes
1answer
181 views

Converting Firebird/Interbase stored procedures to TSQL

I've done some searching and can't find any tools to convert Firebird/Interbase stored procedures to TSQL, I have dozens to convert and would wanted to use a pre-tested, working tool to do this for me ...
3
votes
3answers
400 views

Delphi Interbase Sql Conversion to Sql Server and Oracle

i have a delphi application which uses database interbase / firebird. To consult and write data I use the InterBase components palette (IBTable, IBQuery, IBDataset). I'm performing the conversion of ...
3
votes
9answers
1k views

Delphi dbExpress and Interbase: UTF8 migration steps and risks?

Currently, our database uses Win1252 as the only character encoding. We will have to support Unicode in the database tables soon, which means we have to perform this migration for four databases and ...
3
votes
1answer
331 views

migrating from interbase to MS Sql Server

I would like to know if anyone out in the industry has had experiance in migrating from Interbase to MS Sql Server. Migrating the tables & data is not a big concern, but triggers & stored ...
3
votes
2answers
296 views

One active IB transaction the whole lifetime of a single user application

Are there any negative impacts when a single user application uses only one IB transaction, which is active as long the program runs? By using only CommitRetaining and RollbackRetaining. Background: ...
2
votes
1answer
81 views

help with PHP and interbase

im trying to create a PHP web application to connec to an interbase database. Iv installed xampp for the PHP and Apache. I then installed Firebird SQL 2.5 to get the required DLL's. however iv noticed ...
2
votes
1answer
55 views

Select columns information in interbase

I need to select all columns of my database and their properties (default, comment, type, Precision, Scale, if primary Key, nullable and auto increment). What command do I use for this?
2
votes
5answers
218 views

Help With SQL Query - Sub Query Using INTERBASE

I have the following query SELECT * FROM ( select distinct r1.rep_code, r1.contact_id, c1.Name, ...
2
votes
1answer
190 views

Apache Chroot - ibase_connect failure

Apache 2, running mod_chroot. Can access basic html and php script fine. This test script works fine using cli php, so I know connection string is fine. $host = '127.0.0.1:pubdata'; $password ...
2
votes
0answers
104 views

Changed php-interbase default transaction behaviour

I have some PHP CLI scripts that run for a long time (24 hours plus) and although they do regular 'commit's I had some problems with orphaned transactions - possibly caused by scripts crashing out. ...
2
votes
2answers
445 views

dbExpress does not read the milliseconds part of TimeStamp fields

Recently some Delphi / InterBase applications display "Record not found or changed by another user" They use the default TSQLQuery/TClientDataSet (or TSimpleDataSet) components of dbExpress. We ...
2
votes
2answers
241 views

Select AS not working in interbase

works select payeeid, EXTRACT(WEEKDAY FROM checkdate) as DOW, (bankcleared - checkdate) as DateDiff from Master where (bankcleared is not null) order by payeeid, DOW, DateDiff adding ...
2
votes
2answers
250 views

Getting Distinct Count using SQL?

Simple SQL for you SQL experts. I have two fields (AccountNo, CheckNo). There can be more than 1 checkno that has the same value. It will have the same AccountNo. I would like a listing from mytable ...
2
votes
2answers
354 views

List search results in a combobox

I want to change our search as it is a bit hacky now. Currently it works like this: User enter a text in a textbox, for example Volvo and start searching. This search with SQL all posts ...
2
votes
3answers
392 views

Database Design: Alternate to composite keys?

I am building a database system and having trouble with the design of one of my tables. In this system there is a users table, an object table, an item table and cost table. A unique record in the ...
2
votes
2answers
997 views

How do I limit the number of records returned for Interbase 7.1?

We have an Interbase 7.1 database and I'm trying to figure out how to limit the number of records returned by the query to just 1. I really only need to know an event code from the last record, in ...
2
votes
2answers
2k views

Finding a legacy firebird/Interbase database password

I have a customer that has an old non-existant application; he had a problem with the company that made the application and they won't disclose his database password. He realized that he signed a ...
2
votes
1answer
944 views

Persuade Access 2007 to use a .UDL file/oledb connection?

Is there any way of coaxing Access 2007 into using a .UDL file? Specifically, one of our older products uses an Interbase 6.0 database. My client would like to link to his database, for read/write, ...
2
votes
3answers
2k views

Best way to connect to Interbase 7.1 using .NET C#

Could someone please explain the best way to connect to an Interbase 7.1 database using .NET/C#? The application will be installed on many end user computers so the less "add-ons" that I will have to ...
2
votes
4answers
2k views

How to convert legacy Interbase DB to SQL Server?

I have an Interbase DB. How can I convert it to SQL Server?
2
votes
3answers
3k views

Firebird's SQL's Substring function not working

I created a view on a machine using the substring function from Firebird, and it worked. When I copied the database to a different machine, the view was broken. This is the way I used it: SELECT ...
1
vote
2answers
38 views

Record filesystem writes as binary diff for remote application?

I'm working with continuously updated ~20GB Interbase backups that i want to replicate over the internet. How can i minimise data transferred? I was considering using a binary diff tool, but i ...
1
vote
2answers
35 views

FBDataAdapter hangs on fill using StoredProc

I am having a weird problem. I am using Firebird for .Net and using Interbase database. When I try to fill dataset using a SQL query it works fine, but when I try to execute a storedProc it hangs on ...
1
vote
4answers
130 views

Firebird vs InterBase

I'm a n00b in programming (University student), let alone databases, and I decided to learn Delphi 7.2 and will move on to Delphi 2007 later on, so the logical database design management looked like ...
1
vote
2answers
135 views

My firebird query plan does not use correct index

I have a problem with indexes in my firebird query. Below is my query. SELECT a.objid, b.running_qty, b.running_qty2, b.running_totalcost, b.running_lastcost FROM ...
1
vote
0answers
77 views

IBX: add timeout to TIBControlAndQueryService.InternalServiceQuery

I would like to add isc_info_svc_timeout (1 second) option when calling TIBControlAndQueryServiceGetNextLine. I copied and modyfied IBServices to append isc_info_svc_timeout to ServiceQueryParams ...
1
vote
1answer
242 views

Prevent firebird .GDB database to be opened

I have a firebird database in format .GDB. If I setup a interbase server and I open the .GDB with (for ex. IB Expert) with the default password I can open the Database. So I'd like to prevent the ...
1
vote
1answer
346 views

Executing a script using ISQL

I'm creating a simple isql script but it's not working and I need some help to find out whats wrong with it. I need to connect to a database and execute a SQL file. This is my script called ...
1
vote
2answers
238 views

Update stored procedure fails with a query

Database: Interbase 6.5 Connection: the same result with IBX or BDE Program is written with delphi 7 I try to update th sp. The result "Token unknown -line xx, char yy" Line xx and char yy points to ...
1
vote
1answer
119 views

How to catch an exception of Interbase on Connect when gdb file doesn't exist on a given path

I have fib+ comps installed on my machine and trying to catch Interbase exception on connecting but one exception I cannot catch try { DM->dBase->Connected=false; ...
1
vote
1answer
679 views

interbase and BDE on windows 7

OK I know this has been deprecated, and bde is older than Moses, but we have some legacy applications that have not been migrated still using bde. Has anyone been successfull in installing bde WITH ...
1
vote
1answer
163 views

Can I use JBoss AS 5 or 6 with a Firebird or InterBase SQL server?

Today I tried to configure a JDBC resource in the JBoss AS 6 RC1, and encountered a field which requires a RAR name. If I have a database with a JDBC driver, do I also need a RAR file for the ...
1
vote
1answer
391 views

Delphi 5.0 Open Interbase/FireBird connection via code

This is old stuff! Is related to delphi 5.0 and interbase 1.6. I'm trying to open a DB connection via code. But this code is related to enabling the connection, all the components were added using ...
1
vote
1answer
39 views

Why in the first case displays debit = 'null', and the second the right amount

Why in the first case displays debit = 'null', and the second the right amount ~ SELECT o.kadastr, /* Кадастровый номер */ d.ar_inn, /* ИНН арендатора */ ...
1
vote
2answers
639 views

Is it possible to tweak TStringField to work like TWideStringField in Delphi?

We want to use Unicode with Delphi 2009 and Interbase, and found that to switch the character encoding from WIN1252 to UNICODE_FSS or UTF8 we first have to replace all instances of TStringField with ...
1
vote
1answer
419 views

How to add an Interbase connection pool to glassfish?

I am attempting to add an Interbase connection pool to GlassFish v3 to use EJB 3.1 in a project. The glassfish log appears to be connecting to my database properly, it spits out all my table names and ...
1
vote
1answer
218 views

How can I access an Interbase (.IB) database using pure JDBC?

I have a .IB file which I'd like to access using a Java Application. Where can I find the drivers for Interbase. My OS is Mac OS X
1
vote
1answer
1k views

Interbase: conversion error from string “”

I'm running IB2009 and I'm trying to count the number of records where a specific field is neither NULL nor empty: SELECT COUNT(A.ID) FROM MYVIEW A WHERE ((A.VARCHARFIELD1 IS NOT NULL) OR ...
1
vote
3answers
501 views

FIREBIRD BLR DECODER

folks. When i belived i was a genius and that metadata was my intelectual property, i developed a procedure in firebird to track changes on a single table, something with id´s and time stamps. So, ...
1
vote
1answer
294 views

Apache2, PHP5, and Interbase/Firebird on Windows 2003/XP

I have recently upgraded from Apache 1.26 and PHP 4.3 to 2.2.11 and 5.2.9 respectively. With my original setup I had a scheduled task set to run every Sunday for a weekly newsletter. It would connect ...
1
vote
2answers
333 views

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. ...
1
vote
1answer
130 views

How can I access an Interbase (.IB) database using RubyOnRails?

I have a database in Interbase and I want to access it directly from my Rails app using ActiveRecord. How can I do it?
1
vote
7answers
1k views

Delphi Interbase JSON server

I'm building a little personal project; I wish to have a Windows Service that will act as a simple HTTP server accepting requests via HTTP, run queries against an Interbase 6/7 server and then return ...
1
vote
2answers
122 views

How do I see what queries are running on an interbase database

I have a Interbase 7.x database being used by an application. I want to know which queries are run by that application in different scenarios. Does anyone know about how to "profile" an interbase ...
1
vote
2answers
300 views

How do I connect to Interbase 6 on a remote location from .NET?

What drivers should I use? Are they free? How should the connectionstring look like? Thanks
1
vote
3answers
290 views

Best way to design database tables with interbase?

I am about to start redoing a company database in a proper fashion. Our current database is a mess and has little to no documentation. I was wondering what people recommend to use when designing an ...
0
votes
1answer
19 views

Interbase query to XML

I have an Interbase database that I need to pull data from but cannot seems to put it into xml. I have a table named addresses, and need to get ADDR1, ADDR2, STATE, ZIP, GARAGING. I can get the info ...

1 2 3