Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

firebird-support · Support for Users of Firebird Releases

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 75115 - 75144 of 121784   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
75115 Bogusław Brandys
brandys@... Send Email
May 1, 2006
11:37 am
Hi, I found strange issue with UIB2 delphi components and Firebird 1.5 classic under Windows. Sweeping database using service API (with this component)...
75116 Ivan Setya Darmawan
ivan_darmawan Send Email
May 1, 2006
11:46 am
Hi, Assume I have 2 branch offices. One at Northpole and the other at Southpole (brrbb). Each of them has a same customer table with fields like this: ...
75117 Radu Sky
skysword76 Send Email
May 1, 2006
11:55 am
... Hello, An usual solution to your problem might be that one table PK starts at 1 and the other at 1.000.000.000 or whatever number is comfortable to you. ...
75118 Ivan Setya Darmawan
ivan_darmawan Send Email
May 1, 2006
12:25 pm
... at 1 ... Ok, adding dept_id field to the table: customers ... cust_id VARCHAR(20)(PK) cust_name VARCHAR(80) dept_id INTEGER and then modify the trigger to:...
75119 Eyal
ez_bikbon Send Email
May 1, 2006
12:26 pm
I have the following domain: dom_input_code CHAR(1) CHECK (VALUE IN ('C', 'D')) I have a table with the input_code column that uses the domain as the data...
75120 Alan McDonald
metaalan Send Email
May 1, 2006
12:27 pm
... better still... generators for PKs increment by 10 or 100 (being the number of server stations you might one day have - maybe 10,000 stations! - so...
75121 Alan McDonald
metaalan Send Email
May 1, 2006
12:33 pm
... some reading here may be of interest http://www.meta.com.au/index.php?option=com_content&task=view&id=29&Itemid=3 1 Alan...
75122 Radu Sky
skysword76 Send Email
May 1, 2006
12:49 pm
... You are right,I forgot about this solution. We usually use these two I wrote before since is faster and more visible (at least in the business logic we...
75123 Thomas Steinmaurer
iblogmanager Send Email
May 1, 2006
12:57 pm
Hi Eyal, ... This behaviour is there from the beginning. I don't know if this is compliant to the SQL standard, but the following works: dom_input_code CHAR(1)...
75124 Richard Thomas
sandworker Send Email
May 1, 2006
2:10 pm
Hi All: It seems I've established a connection to the EMPLOYEE.FDB from within my Liberty Basic program as I'm getting what appears to be a valid handle - YAY....
75125 Todd Cary
rtcary Send Email
May 1, 2006
2:20 pm
Helen - The only reason is that I used it some years ago to maintain/backup MCI's Interbase DB's for their 800 number lookups on remote servers...just a...
75126 Nick
upsonn Send Email
May 1, 2006
2:22 pm
"select * from RDB$database" is nice and simple and will always return 1 row -- Nick ... UNIX, C, Panther, Ingres, Interbase, Firebird - Available Shortly ... ...
75127 Paul R. Gardner
cantak3 Send Email
May 1, 2006
3:35 pm
Hi all, Anyone know a way to get the change count on a table? I'm referring to the number of times the metadata has been changed which can be 0 - 255. Thanks!...
75128 Jason Dodson
dirtyrentedmule Send Email
May 1, 2006
3:41 pm
Um, try: CONNECT localhost:D:\APPS&#92;Firebird&#92;examples&#92;employee.fdb; ... -- The information transmitted herewith is sensitive information intended only for use...
75129 Martijn Tonies
martijntonie... Send Email
May 1, 2006
3:49 pm
Hi, ... Available in RDB$FORMATS.RDB$FORMAT Martijn Tonies Database Workbench - development tool for Firebird and more! Upscene Productions ...
75130 Ann W. Harrison
annwharrison Send Email
May 1, 2006
3:51 pm
... Sure it is! Make your primary key compound: one part created with a generator, the second part being either N (for North Pole customers) or S (for south...
75131 Ann W. Harrison
annwharrison Send Email
May 1, 2006
3:54 pm
... NULL is not either 'C' or 'D'. The behavior you describe is correct and follows the standard. You'd see the same behavior if you put the constraint on...
75132 Richard Thomas
sandworker Send Email
May 1, 2006
4:24 pm
Sorry, I hit enter without changing the subject line of the prior e-mail to something else. Sorry, I didn't change the subject on the last post before I hit...
75133 Larry Hengen
larryhengen Send Email
May 1, 2006
5:22 pm
I am trying to build a resultset from a list of ID Values. I would like to do this in a stored procedure rather than in Delphi code because there are lots of...
75134 francoemic Send Email May 1, 2006
6:03 pm
i have installed firebird 2.0 on my windows server 2003. I tried gsec - user sysdba -password masterkey. I wanted change sysdba password and i already have...
75135 Woody
woody_tmw Send Email
May 1, 2006
6:25 pm
From: "francoemic&quot; <Michel.Francoeur@...> ... Firebird 2.0 questions/problems belong on the development list until it is released as a final product. The...
75136 Adam
s3057043 Send Email
May 1, 2006
9:30 pm
... So you are telling me that if I demand your value can only be either 'C' or 'D' that I am meant to accept your NULL? What a strange concept! You give me an...
75137 Adam
s3057043 Send Email
May 1, 2006
9:44 pm
... Well if that works then he is not using the embedded engine. He would be using whatever full server is listening to 3050 on the local machine. If you pass...
75138 Alan McDonald
metaalan Send Email
May 1, 2006
10:13 pm
... if you're doing this all the time from your apps, then I would suggest you let the db do it with a where clause. Add another field(s) to allow these lists....
75139 Adam
s3057043 Send Email
May 1, 2006
10:17 pm
... For small datasets, this will work, but be aware of the limits of the SQL parser. In particular Maximum Query size: 64K Maximum members in an IN condition:...
75140 Helen Borrie
helebor Send Email
May 1, 2006
10:22 pm
... Actually, it seems our behaviour complies with an old standard but not the current one. According to Paul Ruizendaal (I think it was he who raised it in...
75141 Helen Borrie
helebor Send Email
May 1, 2006
10:41 pm
... Pass a string as a varchar of sufficient length and write a procedure that's called within your procedure to parse out the individual values successively...
75142 Helen Borrie
helebor Send Email
May 1, 2006
10:50 pm
... Hah, Woody, the beleagurered list mods need all the help they can get! However, to Michel: if you are playing around with Fb 2.0, it is ESSENTIAL to study...
75143 Leslie Milburn
cdb4w Send Email
May 2, 2006
1:48 am
Hi, Can someone point me to some documentation explaining concisely the concerns some people have with using the BDE to access a firebird database. The reason...
75144 Jeff Lynn
jeff_m_lynn Send Email
May 2, 2006
3:36 am
Please don't response to the this thread, which had been solved two weeks ago and I am now using full API for both stand-alone and remote server with dynamic...
Messages 75115 - 75144 of 121784   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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