User Shane - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T21:56:49Z http://stackoverflow.com/feeds/user/91344 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1602643/trapping-exception-using-tsqlquery-params 1 Trapping Exception using TSQLQuery & params Shane 2009-10-21T18:20:52Z 2009-10-22T11:12:59Z <p>I am getting a "SQL Server Error: arithmetic exception, numeric overflow, or string truncation" error</p> <p>here is the code below</p> <pre><code>AQuery:= TSQLQuery.Create(nil); with AQuery do begin SQLConnection:- AConnection; SQL.Text:= 'Insert into.....'; ParamByName('...').asString:= 'PCT'; . . . try ExecSQL; finally AQuery.Free; end; end; </code></pre> <p>I have alot of ParamByName lines, and I can't figure out which one is throwing the exception. I just know its thrown on the ExecSQL line. How can i tell which paramByName is causing the error?</p> http://stackoverflow.com/questions/808254/reportbuilder-7-x-controlling-print-to-file-at-print-time 0 ReportBuilder 7.x - Controlling Print to File at Print Time Shane 2009-04-30T17:57:13Z 2009-10-09T04:00:02Z <p>Using ReportBuilder 7.X</p> <p>Question</p> <p>Is it possible to Control Print to File.</p> <p>I need to change the Length of a field at print time</p> <p>Example:</p> <p>label2</p> <p>In the setup - I set its length to 800 which is the max possible this field should ever be. However, in many cases the record is less than that and i need to set it to the calculated size before printing to file.</p> <p>Is this possible?</p> <p>Is it possible to control any portions of this Print to file...at print time (before Print, after print)? Are the objects avaiable?</p> <p>We are registered users of the 10.x and above i believe, but have still not gotten around to recompiling are application in Delphi 2009 and the new ReportBuilder....so, that is not an option at this point.</p> <p>Thanks</p> <p>Shane</p> http://stackoverflow.com/questions/868346/why-am-i-receiving-a-255-record-insertion-limit-on-oracle-10g-using-dbexpress 1 Why am i receiving a 255 Record insertion limit on Oracle 10g using DBExpress ? Shane 2009-05-15T12:16:18Z 2009-06-16T19:00:02Z <p>I am hitting an brick wall during normal SQL processing,</p> <p>When connected to Oracle 10g from a remote client w/DBEXPRESS, - using the standard dbxpora.dll + oci.dll</p> <p>When in a transaction, after exactly 255 record insertions, the connection hangs for 30 seconds and returns the error: ORA-03114 (as if it lost the connection...)</p> <p>This happens when inserting 255 records into any table while in a transaction. (when run locally on the db box everything works fine)</p> <p>Is there something I am missing?</p> <p>shane</p> http://stackoverflow.com/questions/921456/replace-characters-in-a-file-faster-method 3 replace characters in a file (faster method) Shane 2009-05-28T15:22:30Z 2009-05-28T16:25:21Z <p>We often replace non-desirable characters in a file with another "good" character.</p> <p>The interface is:</p> <pre><code>procedure cleanfileASCII2(vfilename: string; vgood: integer; voutfilename: string); </code></pre> <p>To replace all non-desirables with a space we might call, cleanfileASCII2(original.txt, 32 , cleaned.txt)</p> <p>The problem is that this takes a rather long time. Is there a better way to do it than shown?</p> <pre><code>procedure cleanfileASCII2(vfilename: string; vgood: integer; voutfilename: string); var F1, F2: file of char; Ch: Char; tempfilename: string; i,n,dex: integer; begin //original AssignFile(F1, vfilename); Reset(F1); //outputfile AssignFile(F2,voutfilename); Rewrite(F2); while not Eof(F1) do begin Read(F1, Ch); // n:=ord(ch); if ((n&lt;32)or(n&gt;127))and (not(n in [10,13])) then begin // bad char if vgood&lt;&gt; -1 then begin ch:=chr(vgood); Write(F2, Ch); end end else //good char Write(F2, Ch); end; CloseFile(F2); CloseFile(F1); end; </code></pre> http://stackoverflow.com/questions/859491/how-to-connect-to-oracle-10g-from-remote-client/863570#863570 1 Answer by Shane for How to connect to Oracle 10g from remote client? Shane 2009-05-14T14:15:07Z 2009-05-14T15:43:28Z <p>Sorry, about the CAPS, this is all new to me. I don't have any reputation, what i did have has now been lowered do to this question title being in caps. I dont know how to comment to you all who have answered........casue it wont let me.....i dont have enough reputation. I guess i need to move onto another forum....</p> <p>anyway, </p> <p>Solved!</p> <p>I setup a new vmware clone - installed the oracle client and our couple of dlls and exes in a dir and it worked.</p> <p>So I removed everything extraneous on the box I was working with and bingo.</p> <p>I think it was Interference from the delphi 2007 that was already on that machine...despite trying to path everything right around it.</p> http://stackoverflow.com/questions/808254/reportbuilder-7-x-controlling-print-to-file-at-print-time/860553#860553 0 Answer by Shane for ReportBuilder 7.x - Controlling Print to File at Print Time Shane 2009-05-13T21:36:35Z 2009-05-13T21:36:35Z <p>i solved this! Each control has a saveLength property. I can just use a global variable that can change at any time (controlling length of entire record). Then just before i print he label, i can set its saveLength property</p> <p>thanks to all who responded though</p> http://stackoverflow.com/questions/369903/where-are-all-the-delphi-developers/753940#753940 1 Answer by Shane for Where are all the Delphi Developers? Shane 2009-04-15T22:10:22Z 2009-05-07T09:02:17Z <p>Some of my favorite are:</p> <ul> <li><a href="http://delphi.about.com/" rel="nofollow">http://delphi.about.com/</a></li> <li><a href="http://www.delphiforfun.org/" rel="nofollow">http://www.delphiforfun.org/</a></li> <li><a href="http://www.delphipages.com/threads/" rel="nofollow">http://www.delphipages.com/threads/</a></li> <li><a href="http://www.marcocantu.com/" rel="nofollow">http://www.marcocantu.com/</a></li> <li><a href="http://www.delphi.org/" rel="nofollow">http://www.delphi.org/</a></li> <li><a href="http://www.experts-exchange.com/Developer/Programming/Languages/Pascal/Delphi/#browseZones" rel="nofollow">http://www.experts-exchange.com/Developer/Programming/Languages/Pascal/Delphi/#browseZones</a></li> </ul> http://stackoverflow.com/questions/868346/why-am-i-receiving-a-255-record-insertion-limit-on-oracle-10g-using-dbexpress/868536#868536 Comment by Shane on Why am i receiving a 255 Record insertion limit on Oracle 10g using DBExpress ? Shane 2009-05-15T17:39:14Z 2009-05-15T17:39:14Z thanks...but im thinking your correct in the transport layer...i.e. DBExpress and Oracle10g. http://stackoverflow.com/questions/868346/why-am-i-receiving-a-255-record-insertion-limit-on-oracle-10g-using-dbexpress/868536#868536 Comment by Shane on Why am i receiving a 255 Record insertion limit on Oracle 10g using DBExpress ? Shane 2009-05-15T13:10:17Z 2009-05-15T13:10:17Z Maybe you missed the &quot;(when run locally on the db box everything works fine)&quot;