Search found 13 matches
- 21.02.2014, 14:45
- Forum: ZeosLib 7.2 Forum
- Topic: MySQL results of stored procedure not returned correctly
- Replies: 1
- Views: 3153
Re: MySQL results of stored procedure not returned correctly
I have found the reason why this is happening. When the result set is grabbed from the C connector DLL, at some point procedure TZAbstractRODataset.InternalInitFieldDefs; is called. in that method, there is this line: FieldType := ConvertDbcToDatasetType(GetColumnType(I)); When I call the SP, the co...
- 21.02.2014, 11:03
- Forum: ZeosLib 7.2 Forum
- Topic: MySQL results of stored procedure not returned correctly
- Replies: 1
- Views: 3153
MySQL results of stored procedure not returned correctly
Hi all, I'm currenlty using 7.2a because I'm working with XE5 and I'm running into some strange issues. In short, I have a single table with an unsigned bigint field (ID), with two records: 2041403756142144128 2041403818419171840 I have one stored procedure which does nothing but: select ID from tab...
- 08.06.2009, 20:08
- Forum: MySQL
- Topic: Modifying (or adding to) a dataset returned by a stored proc
- Replies: 5
- Views: 726
- 08.06.2009, 19:19
- Forum: MySQL
- Topic: Modifying (or adding to) a dataset returned by a stored proc
- Replies: 5
- Views: 726
It doesn't seem like database (mysql) specific problem so maybe I can help. What components are you using to achieve this? Can you post a little sample? Hi trupka, thanks for your reply. The setup is very simple, I have a global TZConnection: fZConnection := TZConnection.Create(Self); fZConnection....
- 07.06.2009, 22:17
- Forum: MySQL
- Topic: Modifying (or adding to) a dataset returned by a stored proc
- Replies: 5
- Views: 726
Modifying (or adding to) a dataset returned by a stored proc
With the risk of asking something very stupid :p
I'm trying to modify or add a record to a dataset returned by a stored procedure. I don't any errors, but the changes are just not stored in the database.
Can anyone tell me what I'm doing wrong?
I'm trying to modify or add a record to a dataset returned by a stored procedure. I don't any errors, but the changes are just not stored in the database.
Can anyone tell me what I'm doing wrong?
- 03.04.2009, 08:31
- Forum: 6.6 - stable
- Topic: Problem with how exceptions are handled in ZIBEventAlerter
- Replies: 6
- Views: 766
- 26.03.2009, 07:35
- Forum: 6.6 - stable
- Topic: Problem with how exceptions are handled in ZIBEventAlerter
- Replies: 6
- Views: 766
If that is the only reason and there is no additional functionality there which is used, I'd like to opt to remove it completely. If you don't catch the exception it's shown automatically, and if you do catch it you do it to avoid it's being shown. This construction is really quite confusing imho. A...
- 25.03.2009, 22:28
- Forum: 6.6 - stable
- Topic: Problem with how exceptions are handled in ZIBEventAlerter
- Replies: 6
- Views: 766
- 25.03.2009, 16:14
- Forum: 6.6 - stable
- Topic: Problem with how exceptions are handled in ZIBEventAlerter
- Replies: 6
- Views: 766
Problem with how exceptions are handled in ZIBEventAlerter
In ZIBEventAlerter.pas, there is a routing called HandleException(). It's called in the Execute() method as well as in the destructor. HandleException() will indirectly show all exceptions using SysUtils.ShowException (via DoHandleException). All in all it results in the following problem for me: tr...
- 11.03.2009, 09:46
- Forum: User Patches
- Topic: [patch_done] PingServer functionality for FireBird
- Replies: 7
- Views: 2639
I've hooked up wireshark, and found the following: The 'ping request' I send is 24 bytes long, which makes 78 bytes when you add all tcp overhead. The server response is 40 bytes longs, which makes 94 bytes including all tcp overhead. This is followed by a TCP ACK, although I think you shouldn't add...
- 10.03.2009, 14:02
- Forum: User Patches
- Topic: [patch_done] PingServer functionality for FireBird
- Replies: 7
- Views: 2639
- 10.03.2009, 10:50
- Forum: User Patches
- Topic: [patch_done] Patch in ZConnection.pas
- Replies: 1
- Views: 542
[patch_done] Patch in ZConnection.pas
I'm doing some test with detecting connection problems while being connected to a FireBird database. I noticed the following in ZConnection.pas, which might be an issue: procedure TZConnection.Disconnect; begin if FConnection <> nil then begin DoBeforeDisconnect; ShowSqlHourGlass; try CloseAllDataSe...
- 10.03.2009, 10:41
- Forum: User Patches
- Topic: [patch_done] PingServer functionality for FireBird
- Replies: 7
- Views: 2639
[patch_done] PingServer functionality for FireBird
I've implemented something which seems to come as close to a ping implementation for FireBird as possible. I'm not very into this, so I hope I didn't make any stupid mistakes :P Added to ZDbcInterbase6.pas: {** Checks if a connection is still alive by doing a call to isc_database_info It does not ma...