mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-29 12:18:01 +01:00
Sun Studio ODBC compile fixes
This commit is contained in:
@@ -91,15 +91,14 @@ inline Poco::UInt32 Bulk::size() const
|
||||
namespace Keywords {
|
||||
|
||||
|
||||
template <typename T>
|
||||
inline Bulk bulk(const T& limit)
|
||||
inline Bulk bulk(const Limit& limit = Limit(Limit::LIMIT_UNLIMITED, false, false))
|
||||
/// Convenience function for creation of bulk.
|
||||
{
|
||||
return Bulk(limit);
|
||||
}
|
||||
|
||||
|
||||
inline void bulk(char)
|
||||
inline void bulk()
|
||||
/// Dummy bulk function. Used for bulk binding creation
|
||||
/// (see BulkBinding) and bulk extraction signalling to Statement.
|
||||
{
|
||||
@@ -109,7 +108,7 @@ inline void bulk(char)
|
||||
} // namespace Keywords
|
||||
|
||||
|
||||
typedef void (*BulkFnType)(char);
|
||||
typedef void (*BulkFnType)();
|
||||
|
||||
|
||||
} } // namespace Poco::Data
|
||||
|
||||
@@ -56,7 +56,7 @@ public:
|
||||
LIMIT_UNLIMITED = 0xffffffffu
|
||||
};
|
||||
|
||||
Limit(Poco::UInt32 value, bool hardLimit, bool isLowerLimit);
|
||||
Limit(Poco::UInt32 value, bool hardLimit = false, bool isLowerLimit = false);
|
||||
/// Creates the Limit.
|
||||
///
|
||||
/// Value contains the upper row hint, if hardLimit is set to true, the limit acts as a hard
|
||||
|
||||
Reference in New Issue
Block a user