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...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 96635 - 96664 of 105422   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
96635
Hello When I call *_isc_attach_database* from *fbembed.dll* 2.1.1 I get this error saying 'Unavailable database'. I can open the same database with *isql.exe*...
Timothy Madden
terminatorul@...
Send Email
Sep 1, 2008
7:45 am
96636
... Depends whether you include MySQL in 'databases' ;) -- Milan Babuskov http://www.flamerobin.org http://www.guacosoft.com...
Milan Babuskov
mbabuskov
Offline Send Email
Sep 1, 2008
8:31 am
96637
... Embedded is a deployment model. Both the server and the client are running in (the same) application space. When one application has a database open...
Helen Borrie
helebor
Offline Send Email
Sep 1, 2008
8:38 am
96638
... I should have said "In databases that are concerned about consistency, if there is a race between consistency and usefulness, consistency always wins."...
Helen Borrie
helebor
Offline Send Email
Sep 1, 2008
8:44 am
96639
... Ok, we're getting somewhere now. The problem you have looks very similar to various NAT-related network problems. After a period of inactivity, some of the...
Milan Babuskov
mbabuskov
Offline Send Email
Sep 1, 2008
8:45 am
96640
... error ... [...] ... in (the same) application space. When one application >has a database open within this space, other applications are blocked from...
Timothy Madden
terminatorul@...
Send Email
Sep 1, 2008
8:52 am
96641
... I appologize about off topic, but after two years of not working with above mentioned 'database' I can still remember the pain of its usefulness... ;) ...
Sasha Matijasic
selectnull
Offline Send Email
Sep 1, 2008
8:55 am
96642
Hi, In a databse with default charset UTF8 I have a couple of char(1) and char(2) columns. I know these are implemented as char(4) and char(8) behind the...
Kjell Rilbe
krilbe
Offline Send Email
Sep 1, 2008
9:00 am
96643
... I can confirm the behaviour. It's interesting that reported column size by IBPP is 4 and 8 respectively. IBPP uses a code like this: XSQLVAR* var =...
Milan Babuskov
mbabuskov
Offline Send Email
Sep 1, 2008
10:42 am
96644
... Nor I am. But this requires API change or change on how things are described to the client. Basically, we need that CHAR datatype be described with a...
Adriano dos Santos Fe...
asfernandes2004
Offline Send Email
Sep 1, 2008
10:53 am
96645
... ISQL is also problematic with UTF-8, and also requires FB API changes. It tries to pad columns thinking on bytes. We need that server send "number of...
Adriano dos Santos Fe...
asfernandes2004
Offline Send Email
Sep 1, 2008
10:56 am
96646
... [snip] ... So, unless you are willing to do a client-breaking change to the API, it is up to the clients to strip the returned data in char(n) columns down...
Kjell Rilbe
krilbe
Offline Send Email
Sep 1, 2008
11:03 am
96647
... Why ? You are talking about CHAR datatype, i.e. fixed number of characters. For UTF8 you can simply compute number of characters = buffer length / 4 Is it...
Ivan Prenosil
iprenosil
Offline Send Email
Sep 1, 2008
11:26 am
96648
... Not sure to whom you're talking Ivan. I was told by Adriano that to be able to tell the client the actual data length it would require a new SQL_TYPE....
Kjell Rilbe
krilbe
Offline Send Email
Sep 1, 2008
12:08 pm
96649
Hi all, within other DBs one can use aggregate functions without the group by clause. This is mostly achieved with the "over( ... )" statement like this ...
klaus_winter@...
Send Email
Sep 1, 2008
12:13 pm
96650
... Firebird doesn't support that syntax. The feature has been requested in the tracker though. Sasha...
Sasha Matijasic
selectnull
Offline Send Email
Sep 1, 2008
12:28 pm
96651
Hi, ... I have almost no knowledge on Oracle, so, how is this distinct from (firebird) :: select extract(year from RECORD.START_PERIOD-5), ...
Anderson Farias
peixedragao
Offline Send Email
Sep 1, 2008
12:30 pm
96652
Hi group, I am converting an existing MySQL database application (very old version of MySQL) to FB 2.x. I writing the code to emulate the calls made to the...
Norman McFarlane
norman@...
Send Email
Sep 1, 2008
1:14 pm
96653
... If we have '<char that use 2 bytes>' in a CHAR(3) UTF-8 column, engine will return a buffer with '<2 bytes><10 spaces>'. We know that valid bytes of this...
Adriano dos Santos Fe...
asfernandes2004
Offline Send Email
Sep 1, 2008
1:41 pm
96654
... Solution with versioning is possible, but we have more things to change, for example strings of variable lengths (for system functions parameters/return)....
Adriano dos Santos Fe...
asfernandes2004
Offline Send Email
Sep 1, 2008
1:46 pm
96655
... An intermediate driver like IBPP could indeed deduce the codepoint size from the physical size by divided by 4, assuming it knows at the point in the code...
Olivier Mascia
taorb
Offline Send Email
Sep 1, 2008
1:58 pm
96656
... No ... No. In real SQL the boot is really on the other foot. It doesn't treat a string as anything but a string unless you "do something" to make it...
Helen Borrie
helebor
Offline Send Email
Sep 1, 2008
2:12 pm
96657
... I don't know about the technicalities of course, but it seems to me that the most logical thing would be for the engine itself to know about the used...
Kjell Rilbe
krilbe
Offline Send Email
Sep 1, 2008
2:44 pm
96658
... It is a FlameRobin bug, because client application has enough informations to be able to display data correctly. ... VARCHAR is sent to the client in fixed...
Ivan Prenosil
iprenosil
Offline Send Email
Sep 1, 2008
3:24 pm
96659
Ivan, ... I fear I don't agree with you, unless you prove me wrong. Does the XSQLDA/XSQLVAR give all the needed information to fully describe these details...
Olivier Mascia
taorb
Offline Send Email
Sep 1, 2008
3:41 pm
96660
... I perfectly agree with you that finding the number of characters (not byte-length) is needed. But why would the engine return description of its output if...
Olivier Mascia
taorb
Offline Send Email
Sep 1, 2008
3:50 pm
96661
"Sasha Matijasic" escribió ... Hi Sasha! I'm very sorry I didn't explain myself better when I posted this thread... I do use the IBX components and also the...
Sergio H. Gonzalez
shg_sistemas
Offline Send Email
Sep 1, 2008
3:59 pm
96662
I need to upgrade several databases (1.5 & 2.0) to 2.1 in the near future. I was planning on doing the standard "backup with old version, upgrade, restore with...
Nick Upson
upsonn
Offline Send Email
Sep 1, 2008
4:01 pm
96663
Olivier, ... After prepare, the xsqlda structure contains * datatype (CHAR) * character set (UTF8) * desired buffer length IMO it is sufficient to get correct...
Ivan Prenosil
iprenosil
Offline Send Email
Sep 1, 2008
4:07 pm
96664
... you mean in all your triggers and SPs? If so, I would register 2 copies of the DB in your favourite admin tool (source and target). Do a search and replace...
Alan McDonald
metaalan
Offline Send Email
Sep 1, 2008
4:08 pm
Messages 96635 - 96664 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