From: <fir...@us...> - 2013-02-18 00:46:11
|
Revision: 57665 http://sourceforge.net/p/firebird/code/57665 Author: firebirds Date: 2013-02-18 00:46:08 +0000 (Mon, 18 Feb 2013) Log Message: ----------- nightly update Modified Paths: -------------- firebird/trunk/ChangeLog firebird/trunk/src/jrd/build_no.h firebird/trunk/src/misc/writeBuildNum.sh Modified: firebird/trunk/ChangeLog =================================================================== --- firebird/trunk/ChangeLog 2013-02-17 23:06:40 UTC (rev 57664) +++ firebird/trunk/ChangeLog 2013-02-18 00:46:08 UTC (rev 57665) @@ -1,3 +1,99 @@ + 2013-02-17 23:06 asfernandes + M src/auth/SecureRemotePassword/Message.h + M src/auth/SecureRemotePassword/manage/SrpManagement.cpp + M src/auth/SecureRemotePassword/server/SrpServer.cpp + M src/common/StatementMetadata.cpp + M src/common/StatementMetadata.h + M src/common/classes/InternalMessageBuffer.cpp + M src/common/utils.cpp + M src/dsql/BlrDebugWriter.h + M src/dsql/dsql.cpp + M src/include/firebird/Provider.h + M src/jrd/EngineInterface.h + M src/jrd/PreparedStatement.cpp + M src/jrd/jrd.cpp + M src/jrd/met.epp +Misc. + + 2013-02-17 12:08 alexpeshkoff + M builds/posix/Makefile.in.plugins_examples + M lang_helpers/gds_codes.ftn + M lang_helpers/gds_codes.pas + M src/auth/SecureRemotePassword/Message.h + M src/auth/SecureRemotePassword/manage/SrpManagement.cpp + M src/auth/SecureRemotePassword/server/SrpServer.cpp + A src/common/MsgMetadata.cpp + A src/common/MsgMetadata.h + M src/common/StatementMetadata.cpp + M src/common/StatementMetadata.h + A src/common/classes/BlrReader.h (from /firebird/trunk/src/jrd/BlrReader.h:57662) + A src/common/classes/BlrWriter.cpp (from /firebird/trunk/src/dsql/BlrWriter.cpp:57597) + A src/common/classes/BlrWriter.h (from /firebird/trunk/src/dsql/BlrWriter.h:57597) + M src/common/classes/ImplementHelper.cpp + M src/common/classes/ImplementHelper.h + A src/common/classes/InternalMessageBuffer.cpp + A src/common/classes/InternalMessageBuffer.h + M src/common/classes/RefMutex.h + M src/common/classes/objects_array.h + M src/common/utils.cpp + M src/common/utils_proto.h + A src/dsql/BlrDebugWriter.cpp + A src/dsql/BlrDebugWriter.h + D src/dsql/BlrWriter.cpp + D src/dsql/BlrWriter.h + M src/dsql/DdlNodes.epp + M src/dsql/DdlNodes.h + M src/dsql/DsqlCompilerScratch.h + M src/dsql/Nodes.h + M src/dsql/StmtNodes.cpp + M src/dsql/dsql.cpp + M src/dsql/dsql.h + M src/dsql/dsql_proto.h + M src/include/firebird/ExternalEngine.h + M src/include/firebird/Provider.h + M src/include/gen/codetext.h + M src/include/gen/iberror.h + M src/include/gen/msgs.h + M src/include/gen/sql_code.h + M src/include/gen/sql_state.h + M src/include/types_pub.h + D src/jrd/BlrReader.h + M src/jrd/Database.h + M src/jrd/EngineInterface.h + M src/jrd/ExtEngineManager.cpp + M src/jrd/ExtEngineManager.h + M src/jrd/PreparedStatement.cpp + M src/jrd/PreparedStatement.h + M src/jrd/ResultSet.cpp + M src/jrd/cch.cpp + M src/jrd/constants.h + M src/jrd/exe.h + M src/jrd/extds/InternalDS.cpp + M src/jrd/extds/InternalDS.h + M src/jrd/jrd.cpp + M src/jrd/met.epp + M src/jrd/par.cpp + M src/jrd/par_proto.h + M src/jrd/val.h + M src/msgs/facilities2.sql + M src/msgs/messages2.sql + M src/msgs/system_errors2.sql + A src/remote/client/BlrFromMessage.cpp + A src/remote/client/BlrFromMessage.h + M src/remote/client/interface.cpp + M src/remote/protocol.h + M src/remote/remote.h + M src/remote/server/server.cpp + M src/yvalve/YObjects.h + M src/yvalve/gds.cpp + M src/yvalve/why.cpp +Modified IStatement interface in our API: +1. Never allocate empty statement - always use att->prepare() to create statement interface +2. Separated IStatement into 2 parts - statement itself and resultset. +3. Added stmt->openCursor() (and att->openCursor() for unprepared statements) to create IResultSet. +4. Always use IMessageMetadata (former IParametersMetadata) to pass message fromat info from client, + therefore avoiding need in BLR generation in client applications. + 2013-02-15 02:48 asfernandes M examples/udr/UdrCppExample.cpp M src/include/FirebirdApi.h Modified: firebird/trunk/src/jrd/build_no.h =================================================================== --- firebird/trunk/src/jrd/build_no.h 2013-02-17 23:06:40 UTC (rev 57664) +++ firebird/trunk/src/jrd/build_no.h 2013-02-18 00:46:08 UTC (rev 57665) @@ -3,16 +3,16 @@ *** DO NOT EDIT *** TO CHANGE ANY INFORMATION IN HERE PLEASE EDIT src/misc/writeBuildNum.sh - FORMAL BUILD NUMBER:30213 + FORMAL BUILD NUMBER:30215 */ -#define PRODUCT_VER_STRING "3.0.0.30213" -#define FILE_VER_STRING "WI-T3.0.0.30213" -#define LICENSE_VER_STRING "WI-T3.0.0.30213" -#define FILE_VER_NUMBER 3, 0, 0, 30213 +#define PRODUCT_VER_STRING "3.0.0.30215" +#define FILE_VER_STRING "WI-T3.0.0.30215" +#define LICENSE_VER_STRING "WI-T3.0.0.30215" +#define FILE_VER_NUMBER 3, 0, 0, 30215 #define FB_MAJOR_VER "3" #define FB_MINOR_VER "0" #define FB_REV_NO "0" -#define FB_BUILD_NO "30213" +#define FB_BUILD_NO "30215" #define FB_BUILD_TYPE "T" #define FB_BUILD_SUFFIX "Firebird 3.0 Unstable" Modified: firebird/trunk/src/misc/writeBuildNum.sh =================================================================== --- firebird/trunk/src/misc/writeBuildNum.sh 2013-02-17 23:06:40 UTC (rev 57664) +++ firebird/trunk/src/misc/writeBuildNum.sh 2013-02-18 00:46:08 UTC (rev 57665) @@ -9,7 +9,7 @@ MajorVer=3 MinorVer=0 RevNo=0 -BuildNum=30213 +BuildNum=30215 NowAt=`pwd` cd `dirname $0` This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |