Tagged Questions
The firebird1.5 tag has no wiki summary.
3
votes
2answers
322 views
My Delphi 7 with Firebird 1.5.6 application is freezing itself after some time of inactivity on Windows 7
I have developed a Delphi 7 application that is using Firebird 1.5.6 database in client
server environment.
The application is running on Windows 7 32 bit on notebook computer an the database is ...
2
votes
2answers
109 views
Updating generator value issue
I'm currently working on modifying a firebird v. 1.5 database.
The database structure will be modified running queries from a delphi application using interbase components, the problem I'm facing is ...
1
vote
3answers
452 views
How to drop all triggers in a Firebird 1.5 database
For debug purposes I need to send 1 table of an existing Firebird 1.5 database to someone.
In stead of sending the whole db , I want to send just the db with just this table - no triggers, no ...
1
vote
2answers
864 views
Grails: Building an Application for an existing Database. How to generate fitting Domainclasses
i got an old Firebird Database with a lot of content.
Is there an easy way to get the content of this Database without rewriting the tables from Database for an Grails Application?
An example would ...
1
vote
2answers
271 views
Understanding the execution plan of a query
I have this SQL:
SELECT
*
FROM
Requisicao r
join convenio c on c.idconvenio = r.idconvenio
join empresa e on e.idempresa = c.idempresa
When I execute it I get this plan of execution:
PLAN ...
0
votes
2answers
224 views
Cannot change sysdba password with Gsec
I have firebird 1.5 super server installed on my windows 7 machine.
I am unable to use the Gsec utility to change the sysdba password for the default user.
The firebird service is running and I ...
0
votes
2answers
66 views
FirebirdDB Cant Run Procedure While Its Backup Db Can
I had a trouble in my database here, I use Firebird 1.5.3 and it work just fine until noe to read or write in normal way, but when I run a procedure, I got blank row result and the following message :
...
0
votes
1answer
89 views
Transaction in firebird 1.5
How to make transaction using IB Expert? I need a manual or something like
begin transaction
create table someTable(a int,b int)
insert into someTable values(1,2)
insert into someTable values(3,4)
...
0
votes
1answer
137 views
stored procedure which solve me names of column of table
I need a stored procedure which in parameter have name of table(varchar) and it return names of columns in this specific table.
It is possible ? I think about some SELECT which retrieve this names ...
0
votes
1answer
90 views
procedure give me garbage data in some fields
I have that code:
string pathToSave = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory);
string file = pathToSave + "\\" + "produkty_" + lang + ".csv";
...
0
votes
1answer
157 views
Firebird 1.5 Export data to .ini file
I need to export entries in a table to an .ini file. I need to set this up as a trigger that is performed each time the table is updated.
So if the fields list for the table is MessengerIPAddress, ...
0
votes
4answers
296 views
How to migrate an old Database into a new Database using Microsoft Access
Basically this task is pretty easy when you think about it... but i found no Answers in Microsoft Access or MSDN. I have to create a connection to an new Database and query the old one. After ...