At 03:27 PM 6/6/2010, David Blocker wrote:
Razzak, what about in a future version changing that field to
VARCHAR to allow for larger view definitions? (Yes, I?ll go
through the proper channels to request this!)
At 03:52 PM 6/6/2010, A. Razzak Memon wrote:
David,
Remember .. we can do anything and everything you can imagine!
R:Anything http://www.ranything.com
R:Everything: http://www.reverything.com
Very Best R:egards,
Razzak.
At 07:41 AM 6/7/2010, Mike Byerley wrote:
BSRTING would be nice.. ;-)
Mike,
I agree!
/*
R:BASE eXtreme 9.1
Pre-Release Beta
October 9, 2010
*/
#include "Qt.h"
#include "BString.h"
#include "Imports.cpp"
//! Reads and loads a bencoded string from the \a reader.
/*!
Returns true if the loaded string is correct, false otherwise.
*/
bool BString::read (BinaryReader &reader)
{
qint64 stringLength = 0;
bool readOk = tryReadInt(reader, stringLength, ':');
if (readOk) {
QByteArray data = reader.readBytes (stringLength);
if (!reader.hasReadPastEnd()) {
value_ = data;
return true;
}
}
return false;
}
This new BSTR data type will give our loyal and current users
(with vested interest in R:BASE), the added functionality they
deserve.
The best is yet to come!
Very Best R:egards,
Razzak.