User Alin Sfetcu - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T04:04:10Zhttp://stackoverflow.com/feeds/user/30694http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1918875/generalized-request-function-in-datasnap-20100generalized request function in DataSnap 2010 ?!?Alin Sfetcu2009-12-17T01:11:21Z2009-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) <> 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#18248011Answer by Alin Sfetcu for How to return a record in a DataSnap method.Alin Sfetcu2009-12-01T08:41:02Z2009-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#18249560Answer by Alin Sfetcu for DBGrid get selected cellAlin Sfetcu2009-12-01T09:15:26Z2009-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#17797102Answer by Alin Sfetcu for big streams with DataSnapAlin Sfetcu2009-11-22T19:32:19Z2009-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 > 0 then sMem.WriteBuffer( Pointer(buf)^, iRead);
if iRead < iBufSize then break;
until iRead < 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-datasnap2big streams with DataSnapAlin Sfetcu2009-11-22T17:51:50Z2009-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 > 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-classtype2cast TObject using his ClassType ?Alin Sfetcu2009-07-04T22:33:40Z2009-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#2583353Answer by Alin Sfetcu for Underused features of Windows batch filesAlin Sfetcu2008-11-03T11:01:40Z2009-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-variant1String representation of the content type of a Variant ?Alin Sfetcu2009-05-24T13:42:56Z2009-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#8775370Answer by Alin Sfetcu for How to set a GUID as ADO query parameters from Delphi?Alin Sfetcu2009-05-18T12:41:30Z2009-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#4044062Answer by Alin Sfetcu for How do I compress multiple files into a single archive with DelphiAlin Sfetcu2009-01-01T01:58:45Z2009-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#3877780Answer by Alin Sfetcu for Is this laptop good enough for Visual Studio?Alin Sfetcu2008-12-22T23:33:04Z2008-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#2931370Answer by Alin Sfetcu for How do you format your Compound Statements in Delphi and C#?Alin Sfetcu2008-11-15T22:16:55Z2008-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#1921053Comment by Alin Sfetcu on generalized request function in DataSnap 2010 ?!?Alin Sfetcu2009-12-17T14:24:32Z2009-12-17T14:24:32ZI 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-2010Comment by Alin Sfetcu on generalized request function in DataSnap 2010 ?!?Alin Sfetcu2009-12-17T11:19:37Z2009-12-17T11:19:37ZYes, 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#1824801Comment by Alin Sfetcu on How to return a record in a DataSnap method.Alin Sfetcu2009-12-02T09:47:18Z2009-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#1824801Comment by Alin Sfetcu on How to return a record in a DataSnap method.Alin Sfetcu2009-12-01T12:43:38Z2009-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-datasnapComment by Alin Sfetcu on big streams with DataSnapAlin Sfetcu2009-11-22T19:06:07Z2009-11-22T19:06:07ZThe 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#1095618Comment by Alin Sfetcu on cast TObject using his ClassType ?Alin Sfetcu2009-07-08T10:21:31Z2009-07-08T10:21:31Zthis 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#903815Comment by Alin Sfetcu on String representation of the content type of a Variant ?Alin Sfetcu2009-05-24T16:19:07Z2009-05-24T16:19:07Zthank you for the answer ... is there any other way to get the string representation of TVarData.VType ?