Search the web
Sign In
New User? Sign Up
firebird-support · Support for Users of Firebird Releases
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 93272 - 93301 of 105422   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
93272
... Yes, that looks like a really good idea. I don't know how hard it would be to implement, but I think it is worth entering in the feature-requests tracker. ...
Milan Babuskov
mbabuskov
Offline Send Email
Apr 1, 2008
7:14 am
93273
Hi, I would like to write a Firebird SP that will insert system date and time into 2 fields of changed record into some table. What is syntax for this SP? ...
Sasa Mihajlovic
majstoru
Offline Send Email
Apr 1, 2008
10:55 am
93274
... You use context variables: CURRENT_DATE CURRENT_TIME and the date literal 'NOW' CURRENT_TIME will return the same time for all records affected by a single...
Helen Borrie
helebor
Offline Send Email
Apr 1, 2008
12:18 pm
93275
With just the basic features would be nice. If so, where can I find it?...
red_october_canada
red_october_...
Offline Send Email
Apr 1, 2008
2:49 pm
93276
... Have you tried ibWebAdmin (http://www.ibwebadmin.net/)? (Disclaimer: I haven't, so I don't know if it's usable) -- Magnus...
Magnus Titho
magnus.titho@...
Send Email
Apr 1, 2008
3:11 pm
93277
Thank you, this works. But it generated another problem, I'll post it in a new thread!...
zzotnik
Offline Send Email
Apr 1, 2008
3:28 pm
93278
Hi guys, I keep getting the error in the subject line with my stored procedure. Here is the code, hope you guys can help me work out something :-) CREATE TABLE...
zzotnik
Offline Send Email
Apr 1, 2008
3:42 pm
93279
... Why are you specifying a segment size? Not sure if that is the actual problem but I would get rid of those designations since you don't declare the fields...
Woody
woody_tmw
Offline Send Email
Apr 1, 2008
3:52 pm
93280
Hi Milan, ... http://tracker.firebirdsql.org/browse/CORE-1815 I also found this old entry (not the samething but related) ...
Anderson Farias
peixedragao
Offline Send Email
Apr 1, 2008
4:01 pm
93281
Hey Woody, It was included automatically in the code by EMS SQL Manager, the client program I'm using to manage my DB. I've tried removing it but it doesn't...
zzotnik
Offline Send Email
Apr 1, 2008
4:11 pm
93282
... Well, since you never listed the entire DML for the tables, it's hard to guess what the field types are. You might have a problem multiplying and dividing...
Woody
woody_tmw
Offline Send Email
Apr 1, 2008
4:23 pm
93283
Hi all, I have the feeling my broblem was (is) related to http://tracker.firebirdsql.org/browse/CORE-1575 http://tracker.firebirdsql.org/browse/CORE-1477 ...
Anderson Farias
peixedragao
Offline Send Email
Apr 1, 2008
4:40 pm
93284
Hi, for conversion from BLOB to string you can use SUBSTRING function SELECT CAST(SUBSTRING(data FROM 1) AS VARCHAR(40)) FROM ProductTypeData data is BLOB...
Slavomir Skopalik
skopalik@...
Send Email
Apr 1, 2008
5:16 pm
93285
Dear Slavek, I'll try your suggestion. But why do I have to convert the blob to varchar? Can't stored procedures return blob data type variables? Thanks!...
zzotnik
Offline Send Email
Apr 1, 2008
6:21 pm
93286
Dear Woody, Here is the declaration of the other table: CREATE TABLE INVOICEITEMS ( ITEMID INTEGER NOT NULL, INVOICEID INTEGER NOT NULL, QUANTITY INTEGER NOT...
zzotnik
Offline Send Email
Apr 1, 2008
6:21 pm
93287
Hi, you must elaborate your code and find point where blob is converted to varchar or numeric. Probably in group by. Also using blob (or varchar) in group by...
Slavomir Skopalik
skopalik@...
Send Email
Apr 1, 2008
6:54 pm
93288
... I think "group by" (or sorting) on blob fields may be allowed/disallowed/fail depending on Firebird version. Review Slavomir's suggestion so that grouping...
Aage Johansen
megselv2
Offline Send Email
Apr 1, 2008
7:47 pm
93289
... CURRENT_DATE and CURRENT_TIME can be used for this. Any reason to split this into two fields though? CAVEAT: Firebird will return for you the local time,...
Adam
s3057043
Offline Send Email
Apr 1, 2008
11:15 pm
93290
Hi all, I have come across a problem whereby I am unable to write utf-8 strings to the database. I have created the database using the utf8 character set, but...
Fidel Viegas
javaguru_uk
Offline Send Email
Apr 2, 2008
1:27 pm
93291
I remembered that I needed to install the compat library first, which I did but I still get the failed dependancies message. rpm -i...
Nick Upson
upsonn
Offline Send Email
Apr 2, 2008
2:14 pm
93292
found it, I needed to install compat-libstdc++-33-3.2.3-62.i386.rpm instead, note very slight difference in the name ... [Non-text portions of this message...
Nick Upson
upsonn
Offline Send Email
Apr 2, 2008
2:26 pm
93293
table1 id ... 100 table2 id ... 23 ... .. Generators gen_table1_id = 0 gen_table2_id = 0 i want to set all generator values from table id's. thanx....
Orhan TURHAN
orhanturhan
Offline Send Email
Apr 2, 2008
2:34 pm
93294
Hi, ... Use the SET GENERATOR statement. You have to figure out the ID numbers by yourself though, as a "generator" by itself has nothing to do with a "table"....
Martijn Tonies
martijntonie...
Offline Send Email
Apr 2, 2008
2:46 pm
93295
Hi, I have procedure that pass all generators, get max(id) from table connected to generator and set generator value. This is good procedure when empy table or...
Sasa Mihajlovic
majstoru
Offline Send Email
Apr 2, 2008
2:59 pm
93296
Thanks for help, there is no need for 2 fields I just need to know hot to call system date & time from SP. Thanks again...
Sasa Mihajlovic
majstoru
Offline Send Email
Apr 2, 2008
3:05 pm
93297
... Is you software for a single user, or does it require concurrency (loads of users at the same time)? It is not a really good idea to mess with generators...
Fidel Viegas
javaguru_uk
Offline Send Email
Apr 2, 2008
3:17 pm
93298
I think you can do something like SELECT GEN_ID(gen_table1_id, (select max(id) from table1) - GEN_ID(gen_table1_id, 0)) FROM rdb$database to set the generator...
Svein Erling Tysvær
svein_erling
Offline Send Email
Apr 2, 2008
3:55 pm
93299
... Subject: [firebird-support] EXECUTE BLOCK - Testing new FB 2.0 features Date: Wed, 22 Nov 2006 01:07:05 -0300 From: Alexandre Benson Smith...
Alexandre Benson Smith
thoriblist
Offline Send Email
Apr 2, 2008
10:52 pm
93300
I posted this to the wrong list. I was meant to post it to the firebird-devel. My apologies. Fidel....
Fidel Viegas
javaguru_uk
Offline Send Email
Apr 3, 2008
12:15 am
93301
Dear All, Is anybody got these eror while compiling DBD-InterBase-0.46.tar.gz? The exception error alarmed while I run make test. install_driver(InterBase)...
Roy Zhao
roy.zhao@...
Send Email
Apr 3, 2008
2:37 am
Messages 93272 - 93301 of 105422   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help