-
Can I submit new bug?.
2009-10-06 21:21:39 UTC by mloskot
-
Trying to run this query:
select name from SignallingArea as sa
where sa.boundary.STContains(
geometry::STPointFromText( 'POINT( -1.975300 50.717616 )', 4326 )
) = 1;
causes SOCI to throw this:
Statement Execute [Microsoft][ODBC SQL Server Driver]COUNT field incorrect or syntax error
The :: in geometry::STPointFromText is being interpreted as a name by the ODBC backend which...
2009-08-19 09:01:31 UTC by jimtarrant
-
I am having the same problem VS2008.
2009-08-05 19:14:31 UTC by scotty2012
-
I have a mistake in the last result:
It's not valid too. The result is int , value 1 (its not right) , and the indicator has value 134531996.
2009-08-05 07:21:59 UTC by ismsc
-
Hi all,
I'm new to soci (and to c++ , I used to develop on java all the time, but ... ).
I faced with some problems getting query status:
I used soci example like this:
class MyInt
{
public:
MyInt() {}
UserSpecificClass(int i) : i_(i) {}
void set(int i) { i_ = i; }
int get() const { return i_; }
private:
int i_;
};
namespace soci
{
template...
2009-08-05 07:14:50 UTC by ismsc
-
from rowset.h (line 229-232):
bool empty() const
{
return (pimpl_->begin() == pimpl_->end());
}
the call to implementation of rowset begin, generates an iterator, and on iterator increments the iterator which causes it to call fetch. So if you use rowset.empty to check if the resulting rowset has any rows and want to use the rowset afterwards you should not use the empty...
2009-07-23 09:27:23 UTC by cipherz
-
This patch is included in Debian package.
2009-06-21 10:59:26 UTC by kmos
-
This patch is integrated in Debian package.
2009-06-21 10:57:33 UTC by kmos
-
For Oracle Backend :
If soci::statement::fetch() returns false, fetching doesn't work for subsequent soci::statement::execute() calls.
Attached patch fixes this.
2009-05-19 10:51:46 UTC by holybrake
-
mloskot committed patchset 496 of module src to the SOCI - The C++ Database Access Library CVS repository, changing 1 files.
2009-04-19 00:18:20 UTC by mloskot