User Evgeny - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T13:40:55Z http://stackoverflow.com/feeds/user/20336 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1829872/read-datetime-back-from-sqlite-as-a-datetime-in-python 0 Read datetime back from sqlite as a datetime in Python Evgeny 2009-12-02T00:15:06Z 2009-12-02T21:48:30Z <p>I'm using the sqlite3 module in Python 2.6.4 to store a datetime in a SQLite database. Inserting it is very easy, because sqlite automatically converts the date to a string. The problem is, when reading it it comes back as a string, but I need to reconstruct the original datetime object. How do I do this?</p> http://stackoverflow.com/questions/1829872/read-datetime-back-from-sqlite-as-a-datetime-in-python/1830011#1830011 1 Answer by Evgeny for Read datetime back from sqlite as a datetime in Python Evgeny 2009-12-02T00:51:38Z 2009-12-02T21:48:30Z <p>It turns out that sqlite3 can do this and it's even <a href="http://docs.python.org/library/sqlite3.html#module-functions-and-constants" rel="nofollow">documented</a>, kind of - but it's pretty easy to miss or misunderstand.</p> <p>What I had to do is:</p> <ul> <li>Pass the <strong>sqlite3.PARSE_COLNAMES</strong> option in the .connect() call, eg.</li> </ul> <blockquote> <pre><code>conn = sqlite3.connect(dbFilePath, detect_types=sqlite3.PARSE_DECLTYPES|sqlite3.PARSE_COLNAMES) </code></pre> </blockquote> <ul> <li><p>Put the type I wanted into the query - and for datetime, it's not actually "datetime", but "timestamp":</p> <pre><code>sql = 'SELECT jobid, startedTime as "[timestamp]" FROM job' cursor = conn.cursor() try: cursor.execute(sql) return cursor.fetchall() finally: cursor.close() </code></pre></li> </ul> <p>If I pass in "datetime" instead it's silently ignored and I still get a string back. Same if I omit the quotes.</p> http://stackoverflow.com/questions/1829855/what-language-are-most-mainstream-windows-gui-programs-written-in/1829896#1829896 1 Answer by Evgeny for What language are most mainstream Windows GUI programs written in? Evgeny 2009-12-02T00:19:55Z 2009-12-02T00:19:55Z <p>Older programs are typically written in Visual C++, usually on top of a framework like MFC. (Unless the program was written by Microsoft, who practically never use MFC. :)) Visual Basic was also very common for internal or amateur applications, but not for the well-known "mainstream" ones.</p> <p>Newer programs are usually written on the .NET platform, so in C# or VB.NET.</p> http://stackoverflow.com/questions/1800232/firefox-doesnt-execute-one-dynamically-loaded-script-element-until-another-is 0 Firefox doesn't execute one dynamically loaded <script> element until another is loaded Evgeny 2009-11-25T21:58:02Z 2009-11-27T15:43:04Z <p>I'm implementing Comet using the script tag long polling technique, based on <a href="http://www.olivepeak.com/blog/posts/read/implementing-script-tag-long-polling-for-comet-applications" rel="nofollow">this page</a>. Following on from my <a href="http://stackoverflow.com/questions/1794047/can-javascript-detect-when-the-user-stops-loading-the-document">previous question</a>, I've got it all working, except for one annoyance, which only happens in Firefox.</p> <p>On the initial page load my Comet client JavaScript sends two requests to the Comet server (in the form of dynamically generated <code>&lt;script&gt;</code> tags that are appended to the DOM):</p> <ol> <li><code>get_messages</code> - this is ongoing poll for messages from the application.</li> <li><code>initialise</code> - this is a once-off request at startup.</li> </ol> <p>These two happen at the same time - that is, the <code>&lt;script&gt;</code> tags for both of them exist in the DOM at the same. (I can see them in the Firebug DOM inspector.) The server immediately sends some script as a response to the <code>initialise</code> request, but it doesn't send anything for the <code>get_messages</code> request until there's actually a message, which may take a while.</p> <p>In Firefox 3.5 the script returned in the <code>&lt;script&gt;</code> tag for the <code>initialise</code> request does not get executed until the other <code>&lt;script&gt;</code> tag (for <code>get_messages</code>) also loads! In Chrome 3 and IE 8 this works fine - the script is executed as soon as it's received.</p> <p>Why does Firefox do this and how do I fix it? I suppose I could try to work around it on the server by sending a dummy "message" at the same time as the <code>initialise</code> response, but that's quite a hack. I'd like to understand and fix this properly, if possible.</p> http://stackoverflow.com/questions/1807113/how-to-wait-for-messages-on-multiple-queues-using-py-amqplib 0 How to wait for messages on multiple queues using py-amqplib Evgeny 2009-11-27T06:34:39Z 2009-11-27T06:42:23Z <p>I'm using <strong>py-amqplib</strong> to access RabbitMQ in Python. The application receives requests to listen on certain MQ topics from time to time.</p> <p>The first time it receives such a request it creates an AMQP connection and a channel and starts a new thread to listen for messages:</p> <pre><code> connection = amqp.Connection(host = host, userid = "guest", password = "guest", virtual_host = "/", insist = False) channel = connection.channel() listener = AMQPListener(channel) listener.start() </code></pre> <p><strong>AMQPListener</strong> is very simple:</p> <pre><code>class AMQPListener(threading.Thread): def __init__(self, channel): threading.Thread.__init__(self) self.__channel = channel def run(self): while True: self.__channel.wait() </code></pre> <p>After creating the connection it subscribes to the topic of interest, like this:</p> <pre><code>channel.queue_declare(queue = queueName, exclusive = False) channel.exchange_declare(exchange = MQ_EXCHANGE_NAME, type = "direct", durable = False, auto_delete = True) channel.queue_bind(queue = queueName, exchange = MQ_EXCHANGE_NAME, routing_key = destination) def receive_callback(msg): self.queue.put(msg.body) channel.basic_consume(queue = queueName, no_ack = True, callback = receive_callback) </code></pre> <p>The first time this all works fine. However, it fails on a subsequent request to subscribe to another topic. On subsequent requests I re-use the AMQP connection and AMQPListener thread (since I don't want to start a new thread for each topic) and when I call the code block above the <strong>channel.queue_declare()</strong> method call never returns. I've also tried creating a new channel at that point and the <strong>connection.channel()</strong> call never returns, either.</p> <p>The only way I've been able to get it to work is to create a new connection, channel and listener thread per topic (ie. routing_key), but this is really not ideal. I suspect it's the wait() method that's somehow blocking the entire connection, but I'm not sure what to do about it. Surely I should be able to receive messages with several routing keys (or even on several channels) using a single listener thread?</p> <p>A related question is: how do I <em>stop</em> the listener thread when that topic is no longer of interest? The <strong>channel.wait()</strong> call appears to block forever if there are no messages. The only way I can think of is to send a dummy message to the queue that would "poison" it, ie. be interpreted by the listener as a signal to stop.</p> http://stackoverflow.com/questions/855926/how-to-stop-exchange-from-automatically-converting-plain-text-emails-to-html 1 How to stop Exchange from automatically converting plain text emails to HTML? Evgeny 2009-05-13T03:29:14Z 2009-11-25T19:18:53Z <p>I've set up an Exchange 2003 mailbox for emails that will be parsed by my code. The emails are sent as plain text and my code expects to receive them as plain text. However, it appears that Exchange is automatically converting them to HTML. How do I stop it from doing that and just receive the email the way it was sent?</p> <p>The reason I believe it's Exchange doing the conversion is because the received email looks like this:</p> <pre><code>&lt;HTML&gt; &lt;HEAD&gt; &lt;META NAME="Generator" CONTENT="MS Exchange Server version 6.5.7654.12"&gt; &lt;/HEAD&gt; &lt;BODY&gt; &lt;!-- Converted from text/plain format --&gt; (then the actual contents, but with HTML markup) &lt;/BODY&gt; &lt;/HTML&gt; </code></pre> http://stackoverflow.com/questions/1794047/can-javascript-detect-when-the-user-stops-loading-the-document 2 Can JavaScript detect when the user stops loading the document? Evgeny 2009-11-25T01:06:28Z 2009-11-25T05:36:56Z <p>I'm implementing Comet using the script tag long polling technique, based on <a href="http://www.olivepeak.com/blog/posts/read/implementing-script-tag-long-polling-for-comet-applications" rel="nofollow">this page</a>.</p> <p>One issue (that I don't think there's a solution for) is the "throbber of doom" - the browser continues to show the document as "loading" forever and leaves the Stop button on the toolbar enabled. This kind of makes sense, because the document <em>is</em> still loading and while it's not ideal, I think I can live with it.</p> <p>The second issue, though, is that if the user actually clicks Stop then the browser stops loading my script tag and I have to rely on a timeout to restart Comet. This means that if my timeout is, say 20 seconds, the page may not be updated for up to 20 seconds after the user clicks Stop. My question is: is there any way to detect when they do this? I can detect when they press escape using the <strong>onkeydown</strong> event, but not if they use the toolbar button or menu item to stop loading.</p> <p>The solution needs to work in Firefox 3.5 and Chrome 3.0.</p> http://stackoverflow.com/questions/1794047/can-javascript-detect-when-the-user-stops-loading-the-document/1794066#1794066 0 Answer by Evgeny for Can JavaScript detect when the user stops loading the document? Evgeny 2009-11-25T01:14:39Z 2009-11-25T01:14:39Z <p>Looks like the <strong>DOMContentLoaded</strong> event does the trick in Firefox 3.5 - it's fired the first time the user stops loading the page. After that the Stop button is disabled. The user can still press Escape to stop loading <em>again</em>, but I can detect that using <strong>onkeydown</strong>.</p> <p>However, this doesn't work in Chrome - it fires DOMContentLoaded as soon as the page loads, without waiting for my dynamically generated <code>&lt;script&gt;</code> tags.</p> http://stackoverflow.com/questions/1780511/what-is-the-nserrorinvalidpointer-error-in-firefox 1 What is the NS_ERROR_INVALID_POINTER error in Firefox? Evgeny 2009-11-23T00:11:12Z 2009-11-23T00:27:06Z <p>While testing JavaScript code in Firefox 3.5 I sometimes get the following error:</p> <pre><code>Component returned failure code: 0x80004003 (NS_ERROR_INVALID_POINTER) </code></pre> <p>I've tried Googling it, but all I can find are solutions to specific problems in other people's code (ie. "if you do this differently then the error will not occur"). But what I'd like to understand is: what <em>is</em> that error - what does it mean? In other words, what do I really know from that error and what do I need to guess?</p> http://stackoverflow.com/questions/1767439/passing-data-across-appdomains-with-marshalbyrefobject/1768339#1768339 2 Answer by Evgeny for Passing data across appdomains with MarshalByRefObject. Evgeny 2009-11-20T04:26:49Z 2009-11-20T04:26:49Z <p>In your code above you are calling</p> <pre><code>AppDomain.CurrentDomain.CreateInstanceAndUnwrap(...) </code></pre> <p>This is simply a round-about way of creating an object in the current domain, same as if you just called the constructor. You need to call that method on a remote domain, ie.</p> <pre><code>AppDomain domain = AppDomain.Create(...) Tunnel tunnel = (Tunnel)domain.CreateInstanceAndUnwrap(...) </code></pre> <p>If you then call tunnel.SetPointer(...) that will run on the remote object.</p> http://stackoverflow.com/questions/1767443/can-i-use-xmlhttprequest-on-a-different-port-from-a-script-file-loaded-from-that 1 Can I use XMLHttpRequest on a different port from a script file loaded from that port? Evgeny 2009-11-19T23:50:47Z 2009-11-20T00:03:16Z <p>I have website that use XMLHttpRequest (jQuery, actually). I also have another site running on the same server, which serves a script file that makes XHR requests back to THAT site, ie.</p> <p><strong><a href="http://mysite:50000/index.html" rel="nofollow">http://mysite:50000/index.html</a></strong> includes</p> <pre><code>&lt;script src="http://mysite:9000/otherscript.js"&gt;&lt;/script&gt; </code></pre> <p>and <strong><a href="http://mysite:9000/otherscript.js" rel="nofollow">http://mysite:9000/otherscript.js</a></strong> includes</p> <pre><code>$.ajax({ url: 'http://mysite:9000/ajax/stuff' }); </code></pre> <p>The problem is - this doesn't work. The AJAX requests from the loaded script simply fail with no error message. From what I've been able to find this is the old same origin policy. Given that I control both sites, is there anything I can do to make this work? The "document.domain" trick doesn't seem to do a thing for XMLHttpRequest.</p> http://stackoverflow.com/questions/1759260/c-exception-handling-fall-through/1759302#1759302 1 Answer by Evgeny for C# Exception Handling Fall Through Evgeny 2009-11-18T21:46:02Z 2009-11-18T21:46:02Z <p>Not a clean way. You <em>could</em> just catch System.Exception and then check the type at runtime, ie.</p> <pre><code>try { ... } catch (System.Exception ex) { if (ex is ExceptionTypeA or ExceptionTypeB or ExceptionTypeC) { ... same code ... } else throw; } </code></pre> <p>... but this is pretty ugly. It would be nicer to, as João Angelo said, have separate catch blocks for each exception type, but call a common method in each of them.</p> http://stackoverflow.com/questions/1752556/is-it-safe-to-include-extra-columns-in-the-select-list-of-a-sqlite-group-by-query 1 Is it safe to include extra columns in the SELECT list of a SQLite GROUP BY query? Evgeny 2009-11-17T23:15:16Z 2009-11-17T23:42:39Z <p>I have a simple SQLite table called "message":</p> <pre><code>sequence INTEGER PRIMARY KEY type TEXT content TEXT </code></pre> <p>I want to get the content of the last message of each type (as determined by its sequence). To my surprise, the following simple query works:</p> <pre><code>SELECT MAX(sequence), type, content FROM message GROUP BY type </code></pre> <p>Surprise, because I know that MSSQL or Postgres would refuse to include a column in the SELECT list that is not part of the GROUP BY clause or an aggregate function and I'd have to do a join, like this:</p> <pre><code>SELECT m.sequence, m.type, m.content FROM ( SELECT MAX(sequence) as sequence, type FROM message GROUP BY type ) g JOIN message m ON g.sequence = m.message_sequence </code></pre> <p>My question is: is it safe to use the first, much simpler, form of the query in SQLite? It intuitively makes sense that it selects the "content" value that matches the "MAX(sequence)" value, but the documentation doesn't seem to talk about this at all. Of course, if sequence was not unique then the result would be undefined. But if sequence is unique, as in my case, is this guaranteed or is it simply a lucky implementation detail that's subject to change?</p> http://stackoverflow.com/questions/1726925/how-to-remove-unique-then-duplicate-dictionaries-in-a-list/1726948#1726948 1 Answer by Evgeny for How to remove unique, then duplicate dictionaries in a list? Evgeny 2009-11-13T03:28:36Z 2009-11-13T03:28:36Z <p>I'd make another dictionary, using the existing dictionaries as keys and the count of occurrences as values. (Python doesn't allow dictionaries to be used as dictionary keys out of the box, but there are a couple of ways of doing that mentioned in <a href="http://stackoverflow.com/questions/1151658/python-hashable-dicts">this answer</a>.) Then it's just a matter of iterating over it and selecting the keys where the value is greater than 1.</p> <p>Of course, using dictionaries as keys relies on their contents not changing over time - at least over the time that you need to use the resulting dictionary. (This is why Python doesn't support it natively.)</p> http://stackoverflow.com/questions/1695819/pass-bash-script-parameters-to-sub-process-unchanged 1 Pass bash script parameters to sub-process unchanged Evgeny 2009-11-08T09:02:49Z 2009-11-08T11:15:08Z <p>I want to write a simple bash script that will act as a wrapper for an executable. How do I pass all the parameters that script receives to the executable? I tried</p> <pre><code>/the/exe $@ </code></pre> <p>but this doesn't work with quoted parameters, eg.</p> <pre><code>./myscript "one big parameter" </code></pre> <p>runs</p> <pre><code>/the/exe one big parameter </code></pre> <p>which is not the same thing.</p> http://stackoverflow.com/questions/1695829/static-event-handlers-threading-and-the-like/1695846#1695846 3 Answer by Evgeny for static event handlers, threading and the like Evgeny 2009-11-08T09:24:22Z 2009-11-08T09:35:16Z <p>When multiple event handlers are registered for an event they are (as far as I know) run sequentially (in the order they were attached), not simultaneously. So there shouldn't be any concurrency issues.</p> <p>If the event is static then yes, all user sessions will see it as they're run in the same .NET AppDomain. (I presume by "session" you mean an ASP.NET session.)</p> <p>The main thing to watch out for with static events is memory leaks. If your event handler is an instance method and you attach it to a static event then that static event now has a reference to the object on which the handler is declared, so that object and anything it references will remain in memory until either the event handler is detached or the whole AppDomain the code is running in is unloaded. Because of this you have to be careful to either detach the event handler when it's no longer needed or at least make sure your event handling class doesn't reference anything else, so the memory leak is minimal.</p> http://stackoverflow.com/questions/1673621/variables-in-a-settimeout-function-jquery/1684555#1684555 1 Answer by Evgeny for Variables in a setTimeout function (jQuery) Evgeny 2009-11-06T00:10:37Z 2009-11-06T00:10:37Z <p><strong>AnthonyWJones</strong> provided a great answer, but there's another similar one, which is slightly easier to write and read. You simply store the value of "this" in a local variable., ie.</p> <pre><code>var storedThis = this; setTimeout(function() { $selector.val(storedThis.savVal); }, 1); </code></pre> http://stackoverflow.com/questions/1658986/how-to-run-code-on-pylons-startup 0 How to run code on Pylons startup Evgeny 2009-11-02T01:06:53Z 2009-11-02T02:27:34Z <p>I have a Python 2.6 web app built on Pylons 0.9.7. The code in my controller only runs the first time a client requests it, which is fair enough, but is there any way I can run some code as soon as the server starts and is ready to accept requests, without waiting until a request is actually received?</p> http://stackoverflow.com/questions/1551992/mono-debugger-not-shown-in-monodevelop-attach-to-process-dialog 0 "Mono Debugger" not shown in MonoDevelop "Attach to Process" dialog Evgeny 2009-10-11T22:42:14Z 2009-10-13T09:59:45Z <p>I'm running MonoDevelop 2.2 Beta 1 with Mono 2.4.2.3 on Ubuntu 9.04 x64. I've compiled it all from source (had to, since it's a beta version). I have both GDB and MDB debuggers installed. When I open a C# project I can start it in the debugger and stop at a breakpoint, so it looks like the MDB debugger is working. However, if I select Run, Attach to Process the only value in the Debugger dropdown is "GNU Debugger (GDB)" - there is no "Mono Debugger" there! How do I fix this? I want to be able to attach to a .NET process, including ASP.NET.</p> <p>In fact, if I disable the "GDB Debugger" addin then the "Attach to Process" menu item disappears entirely.</p> http://stackoverflow.com/questions/1556672/most-horrifying-line-of-code-you-have-ever-seen/1557272#1557272 59 Answer by Evgeny for Most horrifying line of code you have ever seen? Evgeny 2009-10-12T22:22:35Z 2009-10-13T05:25:12Z <p>OK, it's two lines, but this is still my favourite:</p> <pre><code>// initialise the static variable to 0 count = 1; </code></pre> http://stackoverflow.com/questions/1556672/most-horrifying-line-of-code-you-have-ever-seen/1557263#1557263 14 Answer by Evgeny for Most horrifying line of code you have ever seen? Evgeny 2009-10-12T22:20:43Z 2009-10-12T22:20:43Z <pre><code>if (someArray.length &gt; 0 &amp;&amp; someArray != null) ... </code></pre> <p>The fact that this pattern appeared all over the code, along with other massive WTFs, convinced me that this was not simply a typo.</p> http://stackoverflow.com/questions/1551933/nhibernate-or-clause-with-components/1551944#1551944 0 Answer by Evgeny for NHibernate: Or-clause with Components Evgeny 2009-10-11T22:21:35Z 2009-10-11T22:21:35Z <p>I've always just used HQL queries for this - much easier to write <em>and</em> read (at least if you're used to SQL. It's something like this:</p> <pre><code>IQuery query = session.CreateQuery("FROM Person p WHERE p.Name = :Name OR p.Address.Street = :Street"); query.SetParameter("Name", "Xyz"); query.SetParameter("Street", "Xyz"); </code></pre> http://stackoverflow.com/questions/1542002/open-new-browser-windows-in-javascript-without-making-it-active 0 Open new browser windows in JavaScript without making it active Evgeny 2009-10-09T05:52:21Z 2009-10-09T05:58:13Z <p>I have some JavaScript that makes an AJAX call and, if the call fails, opens a new windows (tab in Firefox) and displays the response from the server in that window. This is very convenient for debugging, because the error is typically from Pylons, so it's a full HTML page.</p> <p>The only problem is that the new tab becomes the active tab, which would totally confuse a regular user. Is there any way to open the tab/window, but not make it active, ie. keep the current active window?</p> <p>My code currently looks like this:</p> <pre><code> errorWindow = window.open("", "TCerrorWindow") if (errorWindow) errorWindow.document.write(xhr.responseText); </code></pre> http://stackoverflow.com/questions/1490942/how-to-declare-a-variable-in-a-postgresql-query 0 How to declare a variable in a PostgreSQL query Evgeny 2009-09-29T06:41:05Z 2009-10-02T19:22:57Z <p>This probably sounds like a really stupid question, but how do I declare a variable for use in a PostgreSQL 8.3 query?</p> <p>In MS SQL Server I can do this:</p> <pre><code>DECLARE @myvar INT SET @myvar = 5 SELECT * FROM somewhere WHERE something = @myvar </code></pre> <p>How do I do the same in PostgreSQL? According to the documentation variables are declared simply as "name type;", but this gives me a syntax error:</p> <pre><code>myvar INTEGER; </code></pre> <p>Could someone give me an example of the correct syntax?</p> http://stackoverflow.com/questions/1495382/postgres-query-is-very-slow-with-currentdatedate-instead-of-hardcoded-date 1 Postgres query is very slow with current_date::date instead of hardcoded date Evgeny 2009-09-29T23:01:31Z 2009-09-30T13:19:19Z <p>I have fairly long and complex SQL query that is run against PostgreSQL 8.3. Part of the query involves filtering on a range of dates ending with today, like this:</p> <pre><code>where ... and sp1.price_date between current_date::date - '1 year'::interval and current_date::date and sp4.price_date between current_date::date - '2 weeks'::interval and current_date::date and sp5.price_date = (select sp6.price_date from stock_prices sp6 where sp6.stock_id = s.stock_id and sp6.price_date &lt; current_date::date order by sp6.price_date desc limit 1) ... </code></pre> <p>This query takes almost 5 minutes to run (the first time) and about 1.5 minutes the second time. From looking at the EXPLAIN ANALYZE output it seems that <strong>current_date</strong> is the problem. So I tried replacing it with a hardcoded date, like this:</p> <pre><code>where ... and sp1.price_date between '2009-09-30'::date - '1 year'::interval and '2009-09-30'::date and sp4.price_date between '2009-09-30'::date - '2 weeks'::interval and '2009-09-30'::date and sp5.price_date = (select sp6.price_date from stock_prices sp6 where sp6.stock_id = s.stock_id and sp6.price_date &lt; '2009-09-30'::date order by sp6.price_date desc limit 1) ... </code></pre> <p>The query then ran in half a second! That's great, except that the date occurs in a total of 10 places in the query and, of course, I don't want the user to have to manually change it in 10 places. In MS SQL Server I would simply declare a variable with the value of the current date and use that, but <a href="http://stackoverflow.com/questions/1490942/how-to-declare-a-variable-in-a-postgresql-query/1491329">apparently</a> that's not possible in plain SQL in Postgres.</p> <p>What can I do to make this query run fast while automatically using the current date?</p> http://stackoverflow.com/questions/1490115/is-a-virus-free-or-spyware-free-certification-standard-practice-for-new-busin/1490136#1490136 0 Answer by Evgeny for Is a "Virus Free" or "Spyware Free" Certification Standard Practice For New Businesses? Evgeny 2009-09-29T01:28:12Z 2009-09-29T01:28:12Z <p>The only way to know for sure is to measure it by tracking clicks, but I doubt it would make much of a difference. Despite all the warnings about viruses the average user has no qualms about downloading and running any software from anywhere on the web. As for the, shall we say, "above-average" user, they will see these certification logos for what they are - meaningless marketing BS.</p> <p>If you really want to test it, I wouldn't be paying for any such logo. Just make your own graphic that says "virus free" or whatever and test with that (without saying anything that isn't true, of course). The user is unlikely to make any distinction between that and a certification provided by another company.</p> http://stackoverflow.com/questions/1485034/how-to-report-an-error-from-a-sql-server-user-defined-function 0 How to report an error from a SQL Server user-defined function Evgeny 2009-09-28T01:33:39Z 2009-09-28T06:02:29Z <p>I'm writing a user-defined function in SQL Server 2008. I know that functions cannot raise errors in the usual way - if you try to include the RAISERROR statement SQL returns:</p> <pre><code>Msg 443, Level 16, State 14, Procedure ..., Line ... Invalid use of a side-effecting operator 'RAISERROR' within a function. </code></pre> <p>But the fact is, the function takes some input, which may be invalid and, if it is, there is no meaningful value the function can return. What do I do then?</p> <p>I could, of course, return NULL, but it would be difficult for any developer using the function to troubleshoot this. I could also cause a division by zero or something like that - this would generate an error message, but a misleading one. Is there any way I can have my own error message reported somehow?</p> http://stackoverflow.com/questions/584565/attach-existing-vs-net-2008-instance-thats-already-debugging-as-jit-debugger 0 Attach existing VS.NET 2008 instance that's already debugging as JIT debugger Evgeny 2009-02-25T03:08:03Z 2009-09-27T08:00:02Z <p>Is it possible to configure the VS.NET 2008 "Just-In-Time" Debugger dialog to show an existing instance of Visual Studio that's already attached to another process?</p> <p>The scenario I have is an NUnit unit test that runs another process. When I'm debugging the unit test I want to automatically launch the debugger for the child process it runs as well. I pass a special parameter to the child process and the child calls Debugger.Launch(), which is all fine, but when the JIT debug dialog comes up it doesn't list the existing VS.NET instance - I can only open a new instance, which is quite inconvenient.</p> http://stackoverflow.com/questions/264058/vs-2008-keeps-removing-and-re-adding-subtypeaspxcodebehind-subtype 3 VS 2008 keeps removing and re-adding <SubType>ASPXCodeBehind</SubType> Evgeny 2008-11-05T00:58:41Z 2009-09-14T15:22:07Z <p>I've got a VS 2008 C# Web project and whenever I make some changes to the files in it (not even to the project file itself) VS will remove some lines like this from the csproj file:</p> <p>ASPXCodeBehind</p> <p>So something like this:</p> <pre><code>&lt;Compile Include="Default.aspx.cs"&gt; &lt;DependentUpon&gt;Default.aspx&lt;/DependentUpon&gt; &lt;SubType&gt;ASPXCodeBehind&lt;/SubType&gt; &lt;/Compile&gt; </code></pre> <p>will become</p> <pre><code>&lt;Compile Include="Default.aspx.cs"&gt; &lt;DependentUpon&gt;Default.aspx&lt;/DependentUpon&gt; &lt;/Compile&gt; </code></pre> <p><strong>BUT</strong> the next time I work on this project it will add those lines back! It keeps going back and forth like this, resulting in a lot of meaningless "changes" in our source control system. This never used to happen with VS 2005 and it doesn't seem to be happening for other developers who work on the same project file, only for me.</p> <p>Does anyone know why this is happening and how I can stop it from doing this?</p> http://stackoverflow.com/questions/1403468/combine-tab-separated-value-tsv-files-into-an-excel-2007-xlsx-spreadsheet 0 Combine tab-separated value (TSV) files into an Excel 2007 (XLSX) spreadsheet Evgeny 2009-09-10T05:08:17Z 2009-09-10T22:32:47Z <p>I need to combine several tab-separated value (TSV) files into an Excel 2007 (XLSX) spreadsheet, preferably using Python. There is not much cleverness needed in combining them - just copying each TSV file onto a separate sheet in Excel will do. Of course, the data needs to be split into columns and rows same as Excel does when I manually copy-paste the data into the UI.</p> <p>I've had a look at the raw XML file Excel 2007 generates and it's huge and complex, so writing that from scratch doesn't seem realistic. Are there any libraries available for this?</p> http://stackoverflow.com/questions/1829872/read-datetime-back-from-sqlite-as-a-datetime-in-python/1830499#1830499 Comment by Evgeny on Read datetime back from sqlite as a datetime in Python Evgeny 2009-12-02T23:11:49Z 2009-12-02T23:11:49Z Thanks, Alex, it works! I'm surprised by this, because there is no mention of the TIMESTAMP type at all on <a href="http://www.sqlite.org/datatype3.html" rel="nofollow">sqlite.org/datatype3.html</a> http://stackoverflow.com/questions/1829872/read-datetime-back-from-sqlite-as-a-datetime-in-python/1829971#1829971 Comment by Evgeny on Read datetime back from sqlite as a datetime in Python Evgeny 2009-12-02T00:46:37Z 2009-12-02T00:46:37Z Sorry, it's a datetime, not date. &quot;Date&quot; is relatively easy. http://stackoverflow.com/questions/160971/what-are-your-language-hangups/161189#161189 Comment by Evgeny on What are your language "hangups"? Evgeny 2009-12-02T00:27:26Z 2009-12-02T00:27:26Z If only naming was the worst of PHP's inconsistencies! http://stackoverflow.com/questions/1800232/firefox-doesnt-execute-one-dynamically-loaded-script-element-until-another-is/1809418#1809418 Comment by Evgeny on Firefox doesn't execute one dynamically loaded <script> element until another is loaded Evgeny 2009-11-29T22:12:28Z 2009-11-29T22:12:28Z Thanks, that makes sense. Unfortunately, it doesn't solve the problem for me, because a get_messages request would be running at any given time and a new subscription request can be sent at any time. I've had to do the hack I mentioned in the original post (and some more), which got it working. I haven't tested in IE6, but thankfully this is for internal users and IE6 is unsupported. http://stackoverflow.com/questions/1794047/can-javascript-detect-when-the-user-stops-loading-the-document/1794845#1794845 Comment by Evgeny on Can JavaScript detect when the user stops loading the document? Evgeny 2009-11-25T21:43:35Z 2009-11-25T21:43:35Z Sorry, what do you mean by the explicit <code>stop</code> event? Is there any other way the user can stop loading apart from Escape key, Stop menu item and Stop toolbar button? The latter two are disabled with your suggestion. http://stackoverflow.com/questions/1794047/can-javascript-detect-when-the-user-stops-loading-the-document/1794845#1794845 Comment by Evgeny on Can JavaScript detect when the user stops loading the document? Evgeny 2009-11-25T06:01:33Z 2009-11-25T06:01:33Z Combined with detecting the Escape key using the onkeydown event this solves my problem. Thanks! http://stackoverflow.com/questions/1794047/can-javascript-detect-when-the-user-stops-loading-the-document Comment by Evgeny on Can JavaScript detect when the user stops loading the document? Evgeny 2009-11-25T01:41:59Z 2009-11-25T01:41:59Z S.Mark - I want to re-submit the request, same as if a timeout occurred. eyelidlessness - you're right, if I do it in onload there is no throbber of doom! Combined with the onkeydown trick to detect Escape I think this solves the problem. Put it in an answer so I can give you some rep. :) http://stackoverflow.com/questions/1767439/passing-data-across-appdomains-with-marshalbyrefobject Comment by Evgeny on Passing data across appdomains with MarshalByRefObject. Evgeny 2009-11-20T04:28:27Z 2009-11-20T04:28:27Z There are no properties on assemblies. You can pass a MarshalByRef object from one domain to another, which would automatically load the object's assembly into the remote domain. If you set a property on that object instance then yes, it will be reflected in the remote domain. http://stackoverflow.com/questions/1767439/passing-data-across-appdomains-with-marshalbyrefobject Comment by Evgeny on Passing data across appdomains with MarshalByRefObject. Evgeny 2009-11-20T03:32:11Z 2009-11-20T03:32:11Z I'm not sure what you mean by an &quot;instance&quot; of an assembly. http://stackoverflow.com/questions/1767443/can-i-use-xmlhttprequest-on-a-different-port-from-a-script-file-loaded-from-that/1767492#1767492 Comment by Evgeny on Can I use XMLHttpRequest on a different port from a script file loaded from that port? Evgeny 2009-11-20T03:20:32Z 2009-11-20T03:20:32Z The window.name plugin looked very promising, but unfortunately it also fails to work. :( http://stackoverflow.com/questions/1767439/passing-data-across-appdomains-with-marshalbyrefobject Comment by Evgeny on Passing data across appdomains with MarshalByRefObject. Evgeny 2009-11-20T03:18:13Z 2009-11-20T03:18:13Z Yes, there seems to be some confusion between assemblies and domains. An AppDomain can only have one instance of an assembly loaded. But if the assembly is not strongly named then it's possible to have two identical assemblies and of course their types will be treated as different (ie. type Tunnel in C:\Temp\A.dll and type Tunnel in C:\Dev\A.dll are different). So when you say &quot;C uses B so it loads a new instance of B into the domain&quot; do you mean it loads a different COPY of B, from a different location on disk? What actually fails to work int he above code? http://stackoverflow.com/questions/1767443/can-i-use-xmlhttprequest-on-a-different-port-from-a-script-file-loaded-from-that/1767492#1767492 Comment by Evgeny on Can I use XMLHttpRequest on a different port from a script file loaded from that port? Evgeny 2009-11-20T00:05:54Z 2009-11-20T00:05:54Z What is the &quot;title manipulation&quot; trick? http://stackoverflow.com/questions/1767439/passing-data-across-appdomains-with-marshalbyrefobject Comment by Evgeny on Passing data across appdomains with MarshalByRefObject. Evgeny 2009-11-19T23:55:35Z 2009-11-19T23:55:35Z Yeah, it is a bit hard to understand. Could you post some code and clarify what fails, eg. do you get some exception somewhere or is something null when it shouldn't be? http://stackoverflow.com/questions/1752556/is-it-safe-to-include-extra-columns-in-the-select-list-of-a-sqlite-group-by-query/1752643#1752643 Comment by Evgeny on Is it safe to include extra columns in the SELECT list of a SQLite GROUP BY query? Evgeny 2009-11-18T00:12:50Z 2009-11-18T00:12:50Z Thanks, I didn't know about the DISTINCT ON. It needs the type as part of the ORDER BY, apparently: ORDER BY type, sequence DESC http://stackoverflow.com/questions/1752556/is-it-safe-to-include-extra-columns-in-the-select-list-of-a-sqlite-group-by-query/1752603#1752603 Comment by Evgeny on Is it safe to include extra columns in the SELECT list of a SQLite GROUP BY query? Evgeny 2009-11-18T00:12:17Z 2009-11-18T00:12:17Z Thanks for such a detailed answer!