-
I think Git is better handling branches, forks, merges and overall better for distributed development. Gitorious (http://www.gitorious.org/) is a nice place to host a git repo. Even Qt is using it.
Just a sugestion :)
2009-08-13 16:23:20 UTC in eXaro
-
Hi,
When I run exaro I keep getting lots of these messages:
QMetaProperty::read: Unable to handle unregistered datatype 'ItemIndexMethod' for property 'QGraphicsScene::itemIndexMethod'
QMetaProperty::read: Unable to handle unregistered datatype 'ItemIndexMethod' for property 'QGraphicsScene::itemIndexMethod'.
2009-08-11 01:38:30 UTC in eXaro
-
Silly bug. I just added these lines:
if (!m_rootObject)
return 0;
at the beggining of function ObjectModel::rowCount (objectmodel.cpp:83) and it works now. Please add this patch to eXaro.
2009-08-10 01:08:20 UTC in eXaro
-
Hi,
I'm trying to run eXaro on my ArchLinux and I get the following error:
[luiz@netuno ~]$ gdb exaro
GNU gdb 6.8
Copyright (C) 2008 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by...
2009-08-10 00:58:58 UTC in eXaro
-
It happens to the best of us :)
Are you gonna release a v3.3.1 with bugfixes (like this one)?
Thanks for the help!
2009-07-23 12:46:38 UTC in OCILIB - C Driver for Oracle
-
Hi,
After I switched versions of OCILIB (from 3.2 to 3.3) my inserts/updates (I use prepared statements and binds) started generate the following error:
code : ORA-01480
message: ORA-01480: trailing null missing from STR bind value
If I link it to 3.2 again it works just fine. 3.3 doesn't. Was there some change on the behavior of OCI_BindString?.
2009-07-22 20:56:58 UTC in OCILIB - C Driver for Oracle
-
I rechecked the code and all the modifications were commited.
The only thing that worked was setting the mimimum number of connections that can be opened to 0. After changing that OCI_ConnPoolFree and OCI_Cleanup no longer take 9 min to process.
But won't this decrease the performance im my app duo to the need to always be opening connections? I'll increase a bit the timeout, but not too much...
2009-07-14 18:16:43 UTC in OCILIB - C Driver for Oracle
-
Hi,
My app is using a connection pool. I use OCI_ConnPoolCreate and set a timeout of 2 with OCI_ConnPoolSetTimeout. The internal functions call OCI_ConnPoolGetConnection and then OCI_ConnectionFree when they are done.
If I process a lot of data, when I call OCI_ConnPoolFree or OCI_Cleanup the app stays at this point for a long time, until it finally finish these calls. If I process...
2009-07-10 14:49:07 UTC in OCILIB - C Driver for Oracle
-
Congratulations on the new release!
I linked the OCI_Ping function and the new OCI_BindSetNull functions as well :)
2009-07-08 12:26:12 UTC in OCILIB - C Driver for Oracle
-
For those following the this thread, the issue was resolved. It required a patch to OCILIB and to link with libclient8 (besides the normal libclntsh) as well.
Vincent told me that version 3.3.0 will contain the patch and add a note at the documentation about this linking issue.
2009-05-27 17:40:11 UTC in OCILIB - C Driver for Oracle