User Alin Sfetcu - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T04:04:10Z http://stackoverflow.com/feeds/user/30694 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1918875/generalized-request-function-in-datasnap-2010 0 generalized request function in DataSnap 2010 ?!? Alin Sfetcu 2009-12-17T01:11:21Z 2009-12-17T11:13:48Z <p>This is a client-side function i'm trying to build, more generalized, which will allow me to call different server-side procedures which return TDBXReader. Right now it works, BUT i'm facing couple of problems and i need your help:</p> <ul> <li>(<em>most important</em>) what do you think about this aproach ? any suggestions/advices ?</li> <li>how can i free the vLClient (which in fact is a TSrvMethodClient) ?</li> <li>why i'm not allowed to pass a 2nd argument to the Create method ?</li> </ul> <p>Thank you.</p> <pre><code>function askServerTo_give(SQLConn: TSQLConnection; procName: String; cds: TClientDataSet): Boolean; var ctx : TRttiContext; SrvRTTI: TRttiType; vLClient, vLReader: TValue; //LClient : TSrvMethodsClient; begin Result := False; vLClient := nil; vLReader := nil; ctx := TRttiContext.Create; SrvRTTI := ctx.GetType(TSrvMethodsClient.ClassInfo); vLClient := SrvRTTI.GetMethod('Create').Invoke(SrvRTTI.AsInstance.MetaclassType, [ SQLConn.DBXConnection ] ); //vLClient := SrvRTTI.GetMethod('Create').Invoke(SrvRTTI.AsInstance.MetaclassType, [ SQLConn.DBXConnection , False] ); // Error! //LClient := TSrvMethodsClient.Create( SQLConn.DBXConnection, False); try vLReader := SrvRTTI.GetMethod( procName ).Invoke(vLClient, []); if (vLReader.AsObject as TDBXReader) &lt;&gt; nil then begin TDBXDataSetReader.CopyReaderToClientDataSet((vLReader.AsObject as TDBXReader), cds); Result := not cds.IsEmpty; end; finally (vLReader.AsObject as TDBXReader).Free; //FreeAndNil() doesn`t work //(vLClient.AsObject as TSrvMethodsClient).Free; // Error! ctx.Free; end; end; </code></pre> http://stackoverflow.com/questions/1822895/how-to-return-a-record-in-a-datasnap-method/1824801#1824801 1 Answer by Alin Sfetcu for How to return a record in a DataSnap method. Alin Sfetcu 2009-12-01T08:41:02Z 2009-12-01T09:31:38Z <p>store the record into a stream and pass the stream to the DataSnap method</p> <p>//on server side</p> <pre><code>function GetLoginInfo(const UserId: Integer): TStream; begin Result := TMemoryStream.Create; Result.Write( loginRec, SizeOf(TLoginInfo) ) Result.Seek(0, TSeekOrigin.soBeginning); end; </code></pre> <p>//on client side</p> <pre><code>procedure TfrmMain.getLogInto( sUser: string); var AStr : TStream; loginRec : TLoginInfo; begin // cycleConnection; with TMethodsClient.Create( SQLConn.DBXConnection, False ) do begin AStr := GetLoginInfo( sUser ); AStr.Read( loginRec, SizeOf(TLoginInfo) ) Free; end; FreeAndNil(AStr); end; </code></pre> http://stackoverflow.com/questions/1821429/dbgrid-get-selected-cell/1824956#1824956 0 Answer by Alin Sfetcu for DBGrid get selected cell Alin Sfetcu 2009-12-01T09:15:26Z 2009-12-01T09:15:26Z <p>i think the easiest way is to connect a <strong>hidden</strong> DBText to your dataset then set the DBText to display which field you need, this way that DBText will always contain the needed value of the active record</p> http://stackoverflow.com/questions/1779409/big-streams-with-datasnap/1779710#1779710 2 Answer by Alin Sfetcu for big streams with DataSnap Alin Sfetcu 2009-11-22T19:32:19Z 2009-11-25T11:20:03Z <p>Actually, i think i`ve got it. I'm posting this as an answer maybe somebody else need this.</p> <pre><code>procedure TfrmMain.butStreamClick(Sender: TObject); const iBufSize = 128; var sStr : TStream; sMem : TMemoryStream; buf: PByte; iRead: integer; begin cycleConnection; with TsrvMethodsClient.Create( SQLConn.DBXConnection, False ) do begin sStr := getStream( 500000 ); //500k stream GetMem(buf, iBufSize); sMem := TMemoryStream.Create; try repeat iRead := sStr.Read( Pointer(buf)^, iBufSize); if iRead &gt; 0 then sMem.WriteBuffer( Pointer(buf)^, iRead); if iRead &lt; iBufSize then break; until iRead &lt; iBufSize; finally FreeMem(buf, iBufSize); end; Free; end; FreeAndNil(sStr); FreeAndNil(sMem); end; </code></pre> <p>P.S.</p> <p>Searching through DataSnap code samples i`ve found that one (speed related) improvement would be to have iBufSize set to 61440 (or equivalent hex value $F000) which seems to be the biggest size can be received in one go. If receiving stream is bigger then reported size will be -1 and the code above is needed to read the entire stream.</p> http://stackoverflow.com/questions/1779409/big-streams-with-datasnap 2 big streams with DataSnap Alin Sfetcu 2009-11-22T17:51:50Z 2009-11-25T11:20:03Z <p>Hello,</p> <p>I'm trying to transfer some big streams (~1Mb) between DataSnap server/client but to no avail. I'm trying to understand the code of Jim Tierney (<a href="http://blogs.embarcadero.com/jimtierney/2009/04/06/31461" rel="nofollow">http://blogs.embarcadero.com/jimtierney/2009/04/06/31461</a>) with no luck and i can't even compile the code because of a missing library, anyway ... </p> <p>The max size of a stream i`m able to receive is 64k, so <strong>any</strong> tips/ideas/code samples you can provide for a <em>weekend programmer</em> like me will be very welcomed. Thank you!</p> <p><strong>my server code:</strong></p> <pre><code>function TsrvMethods.getStream(iCount: integer): TStream; begin Result := dummyStream('0123456789', iCount); end; function dummyStream(sCnt: string; iCount: integer): TStream; begin Result := TMemoryStream.Create; while iCount &gt; 1 do begin Result.Write(Pointer(sCnt)^, Length(sCnt)); Dec(iCount); end; Result.Seek(0, TSeekOrigin.soBeginning); end; </code></pre> <p><strong>my client calling code:</strong></p> <pre><code>procedure TfrmMain.butStreamClick(Sender: TObject); var sStr : TStream; begin cycleConnection; //make sure we have an active connection with TsrvMethodsClient.Create( SQLConn.DBXConnection, False ) do begin sStr := getStream( Integer(SpinCount.Value) ); Free; end; FreeAndNil(sStr); end; </code></pre> http://stackoverflow.com/questions/1083087/cast-tobject-using-his-classtype 2 cast TObject using his ClassType ? Alin Sfetcu 2009-07-04T22:33:40Z 2009-07-08T01:02:14Z <p>Hi guys, </p> <p>how can i make my code to work ? :) i`ve tried to formulate this question but after several failed attempts i think you guys will spot the problem faster looking at the code than reading my 'explanations'. thank you.</p> <pre><code>setCtrlState([ memo1, edit1, button1], False); </code></pre> <p>_</p> <pre><code>procedure setCtrlState(objs: array of TObject; bState: boolean = True); var obj: TObject; ct: TClass; begin for obj in objs do begin ct := obj.ClassType; if (ct = TMemo) or (ct = TEdit) then ct( obj ).ReadOnly := not bState; // error here :( if ct = TButton then ct( obj ).Enabled:= bState; // and here :( end; end; </code></pre> http://stackoverflow.com/questions/245395/underused-features-of-windows-batch-files/258335#258335 3 Answer by Alin Sfetcu for Underused features of Windows batch files Alin Sfetcu 2008-11-03T11:01:40Z 2009-07-03T16:43:25Z <p>the correct format for loops with numeric variables is</p> <pre><code>for /l %%i in (startNumber, counter, endNumber) do echo %%i </code></pre> <p>more details > <a href="http://www.ss64.com/nt/for.html" rel="nofollow">http://www.ss64.com/nt/for.html</a></p> http://stackoverflow.com/questions/903791/string-representation-of-the-content-type-of-a-variant 1 String representation of the content type of a Variant ? Alin Sfetcu 2009-05-24T13:42:56Z 2009-05-25T12:01:36Z <p>Hi, first apologies for my english, I hope it make sense what I`ve wrote here. Now to my problem.</p> <p>How can I get the string representation of the content <strong>type</strong> of a Variant using TypInfo.GetEnumName(). I have tried the following, without luck, i get a numeric representation. </p> <p>myString := GetEnumName( TypeInfo(TVarType), TVarData(myVar).VType );</p> <p>thank you</p> http://stackoverflow.com/questions/295511/how-to-set-a-guid-as-ado-query-parameters-from-delphi/877537#877537 0 Answer by Alin Sfetcu for How to set a GUID as ADO query parameters from Delphi? Alin Sfetcu 2009-05-18T12:41:30Z 2009-05-18T12:41:30Z <p>for what is worth i`m using GUIDs but I save them in DB as strings;</p> http://stackoverflow.com/questions/400627/how-do-i-compress-multiple-files-into-a-single-archive-with-delphi/404406#404406 2 Answer by Alin Sfetcu for How do I compress multiple files into a single archive with Delphi Alin Sfetcu 2009-01-01T01:58:45Z 2009-01-01T01:58:45Z <p>I`m using <a href="http://help.madshi.net/madZipUnit.htm#Zip" rel="nofollow">madZip</a> from <a href="http://www.madshi.net" rel="nofollow">madCollection</a></p> http://stackoverflow.com/questions/387259/is-this-laptop-good-enough-for-visual-studio/387778#387778 0 Answer by Alin Sfetcu for Is this laptop good enough for Visual Studio? Alin Sfetcu 2008-12-22T23:33:04Z 2008-12-22T23:33:04Z <p>a 4:3 ratio screen will be much better then a 16:9, you will have much more vertical space</p> http://stackoverflow.com/questions/289712/how-do-you-format-your-compound-statements-in-delphi-and-c/293137#293137 0 Answer by Alin Sfetcu for How do you format your Compound Statements in Delphi and C#? Alin Sfetcu 2008-11-15T22:16:55Z 2008-11-15T22:16:55Z <p>I`m a weekend programmer so, being the only one working on the projects i can afford not to follow a specific coding convention, lucky me. </p> <p>When it comes to code readability Castalia's <a href="http://www.twodesk.com/castalia/structural_highlighting.html" rel="nofollow">structural highlighting</a> is very useful. <a href="http://www.cnpack.org/index.php?lang=en" rel="nofollow">CnPack</a> has a similar feature is i`m not mistaking.</p> http://stackoverflow.com/questions/1918875/generalized-request-function-in-datasnap-2010/1921053#1921053 Comment by Alin Sfetcu on generalized request function in DataSnap 2010 ?!? Alin Sfetcu 2009-12-17T14:24:32Z 2009-12-17T14:24:32Z I don't see where is the duplication, please read my first comment on the original post, as reply for Nick Hodges. http://stackoverflow.com/questions/1918875/generalized-request-function-in-datasnap-2010 Comment by Alin Sfetcu on generalized request function in DataSnap 2010 ?!? Alin Sfetcu 2009-12-17T11:19:37Z 2009-12-17T11:19:37Z Yes, that`s exactly what i'm trying to write, a general function for calling specific server methods. I have several (let say 30) server methods which return DataSets, so instead of having 30 client methods i though will be better (and easy to modify) to just have one client method. http://stackoverflow.com/questions/1822895/how-to-return-a-record-in-a-datasnap-method/1824801#1824801 Comment by Alin Sfetcu on How to return a record in a DataSnap method. Alin Sfetcu 2009-12-02T09:47:18Z 2009-12-02T09:47:18Z @ldsandon: care to explain why using JSON is the <i>better/properly</i> solution ? P.S. i`m a weekend programmer and this is helping me learn more :) http://stackoverflow.com/questions/1822895/how-to-return-a-record-in-a-datasnap-method/1824801#1824801 Comment by Alin Sfetcu on How to return a record in a DataSnap method. Alin Sfetcu 2009-12-01T12:43:38Z 2009-12-01T12:43:38Z @ldsandon: this has nothing to do with <i>get rid of type safety</i> it`s a working solution for that problem. If you have a better solution please, by all means, post it. http://stackoverflow.com/questions/1779409/big-streams-with-datasnap Comment by Alin Sfetcu on big streams with DataSnap Alin Sfetcu 2009-11-22T19:06:07Z 2009-11-22T19:06:07Z The code i've posted works ok with streams smaller then 64k. When bigger streams are sent there is no error but the stream is empty on the other side (or is not send/received). http://stackoverflow.com/questions/1083087/cast-tobject-using-his-classtype/1095618#1095618 Comment by Alin Sfetcu on cast TObject using his ClassType ? Alin Sfetcu 2009-07-08T10:21:31Z 2009-07-08T10:21:31Z this is <i>exactly</i> what I was looking for. Thank you! http://stackoverflow.com/questions/903791/string-representation-of-the-content-type-of-a-variant/903815#903815 Comment by Alin Sfetcu on String representation of the content type of a Variant ? Alin Sfetcu 2009-05-24T16:19:07Z 2009-05-24T16:19:07Z thank you for the answer ... is there any other way to get the string representation of TVarData.VType ?