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.
0
votes
1answer
18 views
Unable to connect PHP and interbase
I have a system that need to be run on interbase. When doing the setup, i get this error when trying to start my apache.
error msg:
PHP startup: interbase: Unable to initialize module
Module ...
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
1answer
24 views
ibase_fetch_assoc returns error on windows xp
This is a simple code that I use to fetch some data from InterBase database:
<?php
$host = 'localhost:C:/ME/DB/test.GDB';
$username='SYSDBA';
$password='*******';
if (!($dbh=ibase_connect($host, ...
0
votes
1answer
36 views
combining different Aggregate functions with CASE
I want to combine different sums for different periods in a query
i use the following query to get a sum.
SELECT table1.BRS,
Sum(CASE WHEN table2.DATUM BETWEEN :van1 AND :tot1 THEN (DBBASIS-CRBASIS) ...
3
votes
2answers
131 views
Interbase transaction monitoring
I have a very strange problem with transactions in Interbase 7.5 which seem to be stucked.
I can track the problem with IBConsole -> right click DB -> Performance Monitor -> Transactions
Usually ...
2
votes
2answers
54 views
How can I copy records between tables only if they are valid according to check constraints in Firebird/Interbase?
I want to copy a bunch of records from a temp table to a target table. The problem is that some records may violate check constraints in the target table so I want to insert everything that is ...
0
votes
2answers
110 views
How can i join between two databases in Interbase?
I have two interbase databases, and i want to make join between.
Long time ago i use MS-SQL database, and there i did that.
How can i make similar in InterBase database?
Thanks answer so much!
0
votes
0answers
146 views
cannot load an IDAPI service library. File GDS32.DDL
I have a InterBase client installed on a terminal server (64bit). With the Admin account is everything ok and the application work. With a restricted account i've got the error message ... "Can not ...
5
votes
1answer
188 views
Database conection with Firebird Adapter in Zend Framework
I just started to learn about ZF and Firebird because of a project I am assigned to. I have been trying to make the connection between both for several days now, but I haven't succeed yet.
I tried ZF ...
1
vote
1answer
110 views
Set up Visual Studio for using LINQ with Interbase
I've recently come into possession of an Interbase SQL database. The database itself is from 2006. From my own research I've determined that the Interbase database can be connected to in one of two ...
0
votes
2answers
132 views
Using Order by with create view or insert in Interbase
I'm having problems sorting data in interbase, my timestamp is in seperate columns of year,month,date, etc so I need to order in that order (though in this case it wouldn't work even to order by a ...
1
vote
1answer
520 views
SELECT DISTINCT INTO syntax error interbase sql
I'm trying to make a copy of a table with only distinct values, using the following syntax:
SELECT DISTINCT *
INTO :TAB_DISTINCT
FROM TAB_MAIN
But IB doesn't like the INTO line (builds a plan ok ...
0
votes
1answer
101 views
InterBase ToGo trial license does not work
(Interbase ToGo is an embedded version of the InterBase sql database.)
I am doing a simple evaluation of InterBase ToGo by accessing it from a Windows 7 app. However, when I run my application I get ...
1
vote
1answer
160 views
Union query Access on an Interbase DB
I am executing queries from Access 2010 on an Interbase database via ODBC (Easysoft) ver.7. Everything works fine except when i come to fire a Union query such as this:
SELECT TRIP.TRIPDATE, ...
0
votes
0answers
31 views
Interbase Results over gSOAP Webservice
Good afternoon.
I'm very new at developing Webservices in gSoap, and a complete beginner at using IBPP to interface with a Firebird databases.
I know this question is very early in the development ...
1
vote
0answers
56 views
how do i change the value of textbox of the entire column with rows that has a check
i'm working here with PHP and interbase. It shows the attendance for the day, and the administrator must have the accessibility to manipulate the time through here. Just like in a typical e-mail ...
3
votes
1answer
105 views
Firebird install conflict with Interbase
Are there conflicts created if Firebird is installed to a system that already has Interbase installed. I see some mention of using the same Ports, additions to the Path, and a common program name in ...
1
vote
1answer
336 views
Delphi IBTable readonly error
I just installed the latest version of Embarcadero Delphi XE3. I made a simple form connecting to InterBase Database. I have IBDatabase, IBTable, IBTransaction, Grid and some other components. ...
1
vote
1answer
329 views
SQL(Interbase) : Case of string with Aggregate function
I am not able to make the following SQL work in Interbase:
i get the following error:
Error at line 1 Attempt to execute an unprepared dynamic SQL statement
SQL:
SELECT CASE
WHEN kl='K' ...
1
vote
4answers
476 views
Jquery AJAX passing variable in ISO8859_1
I have a php code that is catching a variable from a URL parameter and passing it over trough a html edditbale text field over to Jquery/Ajax and then further to an external php code that is passing ...
1
vote
1answer
255 views
ADODB Firebird 2.5 HowTo set Charset to ISO8859_1?
I have a php script which is using a sql select to get data and puting this into a text formfield for editing which then in an external php file will get written back into the firebird DB.
In the ...
1
vote
0answers
172 views
How can I get the Winsock error code for a dbExpress connect error?
In case of a connection problem, the dbExpress driver throws a TDBXError but does not include a socket error code. The message is simply:
Unable to complete network request to host ...
0
votes
1answer
67 views
TDBMemo showing weird output
Using an Interbase database I have an application in which I want to show the contents of an memo field.
I have created a datamodule on which I put a TIBDatabase, TIBTransaction, TDataSource and ...
0
votes
1answer
69 views
Interbase IBConfig setting for Server_Priority_Class
In the OpGuide on page 61:
SERVER_PRIORITY_CLASS . Priority of the InterBase service on Windows server
platforms
. The value 1 is low priority, 2 is high priority
. Relevant only on Windows ...
1
vote
1answer
1k views
PHP can't load some libraries
First I'm using Windows 7 64 bits, WAMP 32 bits and firebird 32 bits.
I'm trying to use PHP with firebird or interbase, so I uncommented the following lines from my php.ini file:
...
1
vote
1answer
175 views
Interbase 6 and stored procedure array parameters
Does Interbase 6 database support passing array parameter to stored procedure? If yes what is the syntax of declaring such variable and using it in the body of procedure?
0
votes
2answers
169 views
How to hide stored procedures and triggers code from users other than SYSDBA in Interbase?
I found some information about the encryption and embedded password features in Interbase 2009, but it does not prevent database users to see the source code. Is it possible to hide the stored ...
1
vote
1answer
206 views
How to license number of users at the database?
Given a Delphi and Interbase client-server application, I'd like to license the application by the number of users at the database. How can this be done with commercial licensing software? I don't see ...
0
votes
2answers
264 views
Install both Interbase and Firebird
Are there any conflicts if both Interbase and Firebird are installed on the same workstation?
Does anyone have any tips or best practices for this?
0
votes
1answer
424 views
Remove white space between words in interbase
I need to remove all white space between "words" in interbase. Coming from a SQL server background I was assuming (wrongly) that interbase would support a replace function but aparently doesn't. So ...
2
votes
1answer
503 views
PHP : connecting to a Firebird (Interbase) database with Zend
I'm trying to connect to a Firebird database using the Zend Framework library (see Zend docs here : http://framework.zend.com/manual/en/zend.db.adapter.html)
The php_interbase.dll extension is ...
0
votes
2answers
563 views
Correct use of alias in Interbase subqueries
I have a problem with my newly created aliases ABONO and CARGO. The ALIASES (for the column names of the result) and SQL query works fine UNTIL I try to calculate "ABONO-CARGO AS AJUSTE" => Interbase ...
0
votes
1answer
202 views
Loading large firebird datafile table into a DataSet
I have a Firbird 1.0 data file weighting aprox 25 GB that I am working with it. It has a table which has stored documents and doc's pics as blob. So, I am asking is it possible to open such big data ...
1
vote
0answers
201 views
Implementation of Interbase password hashing algorithm in Objective-C/C
We have used Interbase/Firebird for many years, and have adopted the password hashing from the interbase security database as a convenient standard for some non-critical encryption uses.
...
1
vote
1answer
106 views
Create function with undefined variable calls dynamically
I'm working with a database making several inserts/updates and the process is very slow.
In the process of trying to fix it I found ibase_prepare and ibase_execute and now I'm working on a function ...
0
votes
2answers
909 views
Invalid request BLR at offset 951
I have got gdb files (25GB another ~38 GB) which were created by Firebird 1.0.
During opening some of the tables they show error [running Firebird Server 1.0 (stopped Interbase 7.5)]-> Invalid request ...
0
votes
1answer
177 views
Deploying Interbase ToGo on Mac OS X
Here are the conditions for the experiment:
Interbase ToGo is licensed
Interbase folder including the license folder is in the same folder
as my multi-platform application called myPgm.app ...
3
votes
2answers
203 views
Should I use native Interbase components to read an Interbase database from Delphi
I have an Interbase 5.5 database (note: this is a very old version, from the last millenium).
So far I have managed to connect to it using the "native" Interbase components that ship with Delphi ...
4
votes
3answers
831 views
Which version of Interbase or Firebird was a database created under?
I have a file with an extension .ib. I am guessing it is either an Interbase or a Firebird file, but I am having trouble working out exactly which. Furthermore, it isn't clear exactly which version of ...
2
votes
1answer
961 views
EIBInterBaseError 'unavailable database' when trying to create a Firebird database in Delphi
I'm trying to create a Firebird database during runtime. The procedure that I'm using to do this is this one:
procedure CreateDatabase(DBName: String);
var
IBDatabase1: TIBDatabase;
begin
...
2
votes
1answer
474 views
Unable to detect the correct character-encoding
I need to extract data from some old interbase databasefiles created with InterBase 4.2.1. I'm using the embedded version of Firebird (version 2.5.1) and the .NetProvider (version 2.7.0). I never ...
0
votes
1answer
84 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
vote
2answers
148 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
134 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 ...
0
votes
1answer
108 views
connecting to Interbase version 5 from C#
Does anyone know how to connect to older versions of interbase (version 5.5 / 5.6) using .NET/C#
I am not sure if the drivers for the latest versions of interbase will work or will eventually cause ...
0
votes
1answer
317 views
Delphi 7 / IBQuery under Win 7 x64 works only after a second click
I have a problem with some Ibquery's on some machines with Win7 x64. The problem is that the query doesn't work the first time, I hit the button and the query is empty, I hit(not double click) it ...
0
votes
1answer
118 views
Ado .Net 2.0 driver for Interbase XE version
Could someone to explain about Ado .Net 2.0 driver for using Interbase XE version?
0
votes
5answers
993 views
Error opening Interbase database with IBExpert
wrong or obsolete version. unsupported on-disk structure for file C:\DOCUMENTS AND SETTINGS\ADMINISTRATOR\DESKTOP\BD.IB; found 11.2, support 11.2
When I went to open an Interbase database with ...
0
votes
2answers
242 views
Compiling InterBase support in Qt
I have followed the instructions on http://doc.qt.nokia.com/stable/sql-driver.html#qibase for compiling Interbase support into Qt, and made sure all of my libraries are in the right place. qmake runs ...
1
vote
4answers
1k 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 ...