User Vincent Ramdhanie - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T11:23:43Zhttp://stackoverflow.com/feeds/user/27439http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1940331/how-to-map-a-one-to-many-collection-to-a-joined-subclass-when-key-is-in-the-paren/1940411#19404111Answer by Vincent Ramdhanie for how to map a one-to-many collection to a joined subclass when key is in the parent classVincent Ramdhanie2009-12-21T14:28:57Z2009-12-21T14:28:57Z<p>If I understand your question correctly then I don't think that is possible. If the class Bar has a reference to Foo then the FK that is generated with the current config is correct. If you want Bar to have a reference to AbstractFoo then it will create the FK to the abstractFoo table and allow any subclass of AbstractFoo to be references bay Bar.</p>
<p>Usually this is actually what you want...A reference to the super class. However, without knowing moree about your design, if you reallly jst need a reference to the subclass then your configuration is correct.</p>
http://stackoverflow.com/questions/1931188/bluehost-vs-vnhosting-for-drupal/1931197#19311970Answer by Vincent Ramdhanie for BlueHost vs. VNhosting for DrupalVincent Ramdhanie2009-12-18T23:09:53Z2009-12-18T23:09:53Z<p>I have recently started a BlueHost account to run a drupal site. So far the experience is very good. But...I have only been using them for a month and I have had no problems that required support. But everything works well. I have control over all aspects of the drupal installation and thats a plus for me.</p>
http://stackoverflow.com/questions/1930502/jquery-fadein-fadeout-with-click/1930525#19305251Answer by Vincent Ramdhanie for jQuery fadeIn fadeOut with clickVincent Ramdhanie2009-12-18T20:32:41Z2009-12-18T20:32:41Z<p>Try this:</p>
<pre><code>$(document).ready(function(){
$(".button_contact").click(function() {
$("#contact_form").fadeIn("slow");
});
$(".button_close").click(function() {
$("#contact_form").fadeOut("slow");
});
});
</code></pre>
http://stackoverflow.com/questions/1929624/consider-a-career-in-programming-would-like-advice-on-which-degree-to-choose/1929685#19296851Answer by Vincent Ramdhanie for Consider a career in programming, would like advice on which degree to chooseVincent Ramdhanie2009-12-18T17:40:43Z2009-12-18T18:16:29Z<p>I remember reading an article from ACM once where they interviewed some of the luminaries in the gaming industry and they suggested that they prefer candidates with degrees in mathematics rather than comp sci because it was easier to teach a mathematician how to program than to teach the programmer the level of mathematics required for game programming.</p>
<p><hr></p>
<p><a href="http://www.acm.org/crossroads/xrds13-2/colt.html" rel="nofollow">I found the article that I mentioned.</a></p>
http://stackoverflow.com/questions/1928323/jquery-validate-before-serialize/1928339#19283391Answer by Vincent Ramdhanie for jquery validate before serializeVincent Ramdhanie2009-12-18T13:56:12Z2009-12-18T13:56:12Z<p>You need to use the <a href="http://docs.jquery.com/Plugins/Validation" rel="nofollow">Validate plugin</a>. It is quite easy to specify various rules on form submission.</p>
http://stackoverflow.com/questions/1927594/is-is-possible-to-build-java-code-using-jdk-1-6-to-run-on-jre-1-5/1927608#19276083Answer by Vincent Ramdhanie for Is is possible to build java code using JDK 1.6 to run on JRE 1.5?Vincent Ramdhanie2009-12-18T11:16:51Z2009-12-18T13:54:58Z<p>If you compile your code with 1.6 then it will not run on 1.5. If you want it to run in 1.5 then you can compile the code with 1.5 and it would be able to run on both.</p>
<p>Try compiling with 1.5 and if there are errors then post them. The only way it will not compile on 1.5 is if you use specific 1.6 enhancements in your code.</p>
<p><hr></p>
<p>To answer the real question.</p>
<pre><code> javac -target 1.5
</code></pre>
<p>See <a href="http://java.sun.com/j2se/1.5.0/docs/tooldocs/solaris/javac.html" rel="nofollow">here</a> for more details.</p>
http://stackoverflow.com/questions/1925998/jquery-wait-for-all-select-options-to-load/1926009#19260092Answer by Vincent Ramdhanie for jQuery wait for all select options to loadVincent Ramdhanie2009-12-18T02:59:00Z2009-12-18T02:59:00Z<p>Can you show some code that you have so far? Using jQuery's ready() function should accomplish what you want. It basically waits for the entire DOM to load before it executes.</p>
<pre><code> $(document).ready(function(){
//code here runs after the DOM is created
});
</code></pre>
http://stackoverflow.com/questions/1925987/software-for-quickest-establishment-of-an-online-presence/1925996#19259962Answer by Vincent Ramdhanie for Software for quickest establishment of an online presenceVincent Ramdhanie2009-12-18T02:55:10Z2009-12-18T02:55:10Z<p>You will find frameworks like <a href="http://drupal.org/" rel="nofollow">drupal</a> and <a href="http://www.joomla.org/" rel="nofollow">Joomla</a> of great service for this.</p>
http://stackoverflow.com/questions/1925952/simple-search-and-answer-application/1925981#19259811Answer by Vincent Ramdhanie for Simple "search" and "answer" applicationVincent Ramdhanie2009-12-18T02:51:05Z2009-12-18T02:51:05Z<p>There is no "best" language for this application. Any language or environment you choose will work. Other factors to consider though: which language are you most comfortable with? Next, you have to consider the mechanism that the answer will be determined. Is it some sort of expert system? Then you may consider languages that support those to create the expert engine in the backend and use web technologies such as PHP, Java or .NET to create the front end.</p>
http://stackoverflow.com/questions/1925944/how-much-should-software-engineer-with-three-years-of-experience-be-making/1925965#19259650Answer by Vincent Ramdhanie for How much should Software Engineer with three years of experience be making?Vincent Ramdhanie2009-12-18T02:47:33Z2009-12-18T02:47:33Z<p>It depends on what you have been doing for the 3 years. The length of the experience is not the only factor. If you have been working on other peoples areas and not responsible for your own shipped code etc then that does not count as much as if you were responsible for your own areas or projects that successfully shipped. If you mentored other members of a team or lead a team that is even better. You may find that the salaries fall in a range so you will determine which end of the range you should target by your experience.</p>
http://stackoverflow.com/questions/1924526/jquery-flot-from-a-database-in-classic-asp/1924690#19246901Answer by Vincent Ramdhanie for jquery Flot from a database in classic ASPVincent Ramdhanie2009-12-17T21:23:17Z2009-12-17T21:49:16Z<p>There are several things you have to look at. First JSON. You need to know the structure of your JSON string. For instance you can create a JSON string like this:</p>
<pre><code> {"name":"Tom", "sales":200}
</code></pre>
<p>Or if it is many names and sales then use an array like this:</p>
<pre><code>{"names":["Tom", "Harry"], "sales":[200, 100]}
</code></pre>
<p>Then to access these values in JavScript...suppose you had the JSON object like this:</p>
<pre><code>var myJSON = {"names":["Tom", "Harry"], "sales":[200, 100]};
document.write(myJSON.names[0]); //print out Tom
document.write(myJSON.sales[0]); //200
</code></pre>
<p>Since you want to use AJAX to get this JSON object then you can create an ASP page that simply returns a JSON String in the right format. For example:</p>
<pre><code> Set rs = Conn.Execute("SELECT name, sales FROM employees")
If Not rs.EOF Then
Response.Write "{'names':["
Do Until rs.EOF
Response.Write rs("name")
Response.Write ","
rs.MoveNext
Loop
rs.Close : Set rs = Nothing : Conn.Close : Set Conn = Nothing
Response.Write "]}"
%>
</code></pre>
<p>Disclaimer: This is not tested code, I have not written classic ASP in almost 10 years! For instance, make sure that a final , is not printed etc.</p>
<p>Now, <a href="http://people.iola.dk/olau/flot/examples/ajax.html" rel="nofollow">this link</a> has some examples of loading data with AJAX and updating the graph. So you have to modify the URL to point to your asp page that generates the JSON string and modify the onDataRecieved function to add the data according to your own structure.</p>
<p>I hope this helps a little.</p>
http://stackoverflow.com/questions/1924651/prolog-fixing-multiple-answers-using-cut/1924821#19248211Answer by Vincent Ramdhanie for prolog: fixing multiple answers (using cut?)Vincent Ramdhanie2009-12-17T21:47:44Z2009-12-17T21:47:44Z<p>Your question includes the answer...the cut. The cut always succeeds and has the side effect of "cutting off" the derivation tree. Basically you cannot backtrack pass a cut.</p>
<p>The first example will execute the cut if the goal unifies with the second rule. In a sense, that choice becomes fixed. If there is failure or backtracking after it does not bacjtrack over the cut thus eliminating multiple answers. The cut is useful when the answers are mutually exclusive. That is, when you find the first answer no others will make sense.</p>
http://stackoverflow.com/questions/1924396/how-to-layout-form-elements/1924476#19244761Answer by Vincent Ramdhanie for How to layout form elementsVincent Ramdhanie2009-12-17T20:47:00Z2009-12-17T20:47:00Z<p>I have also found these sites useful:</p>
<ul>
<li><a href="http://uipatternfactory.com/" rel="nofollow">UI Pattern Factory</a></li>
<li><a href="http://homepage.mac.com/bradster/iarchitect/shame.htm" rel="nofollow">Interface Hall of Shame</a></li>
</ul>
http://stackoverflow.com/questions/1924401/jquery-popup-when-mailto-link-is-clicked/1924425#19244251Answer by Vincent Ramdhanie for Jquery popup when mailto link is clickedVincent Ramdhanie2009-12-17T20:39:37Z2009-12-17T20:39:37Z<p>You need quotes</p>
<pre><code> $('a[href^="mailto:"]')
</code></pre>
<p>And while we're at it how about just:</p>
<pre><code> var x=window.confirm('This is the message.');
return x;
</code></pre>
<p>for the body of the function?</p>
http://stackoverflow.com/questions/1918923/adding-combo-box-dynamically/1918958#19189580Answer by Vincent Ramdhanie for Adding Combo-box dynamicallyVincent Ramdhanie2009-12-17T01:39:22Z2009-12-17T01:39:22Z<p>Try to think of the outcome that you wish to get. In this case you wish to have HTML that looks like this:</p>
<pre><code> <select>
<option></option>
<option></option>
</select>
</code></pre>
<p>So the question is what elements are there? There are three in my example, a select and two options. So in your JavaScript how do you create elements?</p>
<pre><code> var element4 = document.createElement("select");
</code></pre>
<p>This creates a select. So how would you create an option?</p>
<pre><code> var option1 = document.createElement("option");
</code></pre>
<p>maybe?</p>
<p>how would you add the option to the select? Same way you add the select to the cell.</p>
<pre><code> element4.appendChild(option1);
</code></pre>
<p>then create the other options that you need and add the select to the cell.</p>
http://stackoverflow.com/questions/1911719/jquery-mouse-one-event-with-mouseover-fadein-and-fadeout/1911734#19117343Answer by Vincent Ramdhanie for Jquery mouse one event with mouseover (fadein and fadeout)Vincent Ramdhanie2009-12-16T01:39:46Z2009-12-16T02:29:36Z<p>You are probably looking for the hover function.</p>
<pre><code> $(document).ready(function(){
$("#logo1, #logo2, #logo3, #logo4").hover(function(){
//perform fadeIn here
}, function(){
//perform fadeOut here
});
});
</code></pre>
http://stackoverflow.com/questions/1910169/subtraction-order-of-evaluation/1910200#19102004Answer by Vincent Ramdhanie for Subtraction - Order of EvaluationVincent Ramdhanie2009-12-15T20:34:29Z2009-12-15T20:34:29Z<p>Generally when multiple operations have the same precedence they are evaluated from left to right similar to arithmetic. I wouldn't want to say ALL languages because I haven't done a survey of all but it makes sense that it should be so. I would still read the docs carefully for whatever new language I was going to try.</p>
http://stackoverflow.com/questions/1910124/using-hibernate-jpa-without-relationships-and-avoiding-multiple-db-calls/1910151#19101511Answer by Vincent Ramdhanie for Using Hibernate/JPA without relationships and avoiding multiple DB callsVincent Ramdhanie2009-12-15T20:25:55Z2009-12-15T20:25:55Z<p>If you want to avoid relationships then you lose a significant advantage of JPA. However, you can still do what you want with <a href="http://docs.jboss.org/hibernate/core/3.3/reference/en/html/querysql.html" rel="nofollow">Native SQL</a> which is supported by Hibernate. </p>
http://stackoverflow.com/questions/1909315/how-can-you-call-custom-database-functions-with-hibernate/1909343#19093433Answer by Vincent Ramdhanie for How can you call custom database functions with Hibernate?Vincent Ramdhanie2009-12-15T18:16:37Z2009-12-15T18:16:37Z<p>You may be able to do that using native queries. This <a href="http://docs.jboss.org/hibernate/core/3.3/reference/en/html/querysql.html#sp%5Fquery" rel="nofollow">doc</a> explains.</p>
http://stackoverflow.com/questions/1909280/equivalence-class-testing-vs-boundary-value-testing/1909296#19092963Answer by Vincent Ramdhanie for Equivalence Class Testing vs. Boundary Value TestingVincent Ramdhanie2009-12-15T18:11:38Z2009-12-15T18:11:38Z<p>Boundary value analysis simply means to select values near the boundaries of the classes. So you are still dividing the input domain according to the classes then instead of selecting values from the middle of the class use values from the boundaries.</p>
<p>For example, if the input condition is a range from 20 to 70 then you have three classes of input</p>
<ol>
<li>less than 20</li>
<li>between 20 and 70</li>
<li>more than 70</li>
</ol>
<p>then for boundary value analysis select input = 19, 20, 21, 69, 70, 71. This type of analysis picks up errors on the boundaries.</p>
http://stackoverflow.com/questions/1909043/send-data-to-xml-via-ajax-jquery/1909111#19091112Answer by Vincent Ramdhanie for Send data to XML via AJAX jqueryVincent Ramdhanie2009-12-15T17:39:44Z2009-12-15T18:08:13Z<p>Using the AJAX call in jQuery you can accomplish something like this:</p>
<pre><code>$('#yourselect').change(function(){
$.ajax({
type: "GET",
url: "employee.xml",
dataType: "xml",
data: "id=" + $(this).val,
success: function(xml){
//code to handle the successful return from the server
//your existing handler should work here
}
});
});
</code></pre>
<p>However, it may be easier to use one of the higher level functions as found in the forms plugin for submitting a form via AJAX.</p>
<p>UPDATE:
OK. Now I see your update. I think this may still help.</p>
http://stackoverflow.com/questions/1909179/drawing-uml-state-diagrams/1909206#19092061Answer by Vincent Ramdhanie for Drawing UML state diagramsVincent Ramdhanie2009-12-15T17:55:59Z2009-12-15T17:55:59Z<p>Transitions are NOT states. Transitions are the events that move an object from one state to the next. States are defined by the value of variables in the object and by the behaviour of the object. Take for instance a Student object that has a value "new-waiting for approval" value. That student is not allowed to register for or attend classes. But the same student may be allowed to register for and attend classes if the value changes to "approved". What's the difference? The student object actually has two states.</p>
<p>What causes the Student object to move from one state to the next? The event "Approval Arrives" maybe. So Approval Arrives go on the arrow between two states.</p>
http://stackoverflow.com/questions/1908934/sql-query-to-compare/1908948#19089481Answer by Vincent Ramdhanie for SQL Query to compareVincent Ramdhanie2009-12-15T17:11:32Z2009-12-15T17:11:32Z<pre><code>SELECT some_value
FROM table1
WHERE some_value not in ( select some_value from table2);
</code></pre>
http://stackoverflow.com/questions/1908365/how-to-put-new-line-in-jsps-epression-language/1908407#19084072Answer by Vincent Ramdhanie for How to put "new line" in JSP's Epression Language?Vincent Ramdhanie2009-12-15T15:57:11Z2009-12-15T15:57:11Z<p>If you want a new line in the browser then you need to put "<code><br/></code>" in the text. The browser will then interpret it correctly. It does not understand \n.</p>
http://stackoverflow.com/questions/1906673/import-com-sun-image-codec-jpeg/1906708#19067080Answer by Vincent Ramdhanie for import com.sun.image.codec.jpeg.*Vincent Ramdhanie2009-12-15T11:07:50Z2009-12-15T11:07:50Z<p>Which JDK are you using? I think that this package is not a requirement and will only be available in Sun's JDK. <a href="http://markmail.org/message/s4j7pbhie5wvf5b2" rel="nofollow">This discussion</a> explains.</p>
<p>You may be able to download the jar file and include it on your path file separately if you really want to use it though.</p>
<p>According to <a href="http://java.sun.com/j2se/1.4.2/docs/guide/2d/api-jpeg/com/sun/image/codec/jpeg/JPEGImageEncoder.html" rel="nofollow">docs</a>:</p>
<blockquote>
<p>Note that the classes in the com.sun.image.codec.jpeg package are not part of the core Java APIs. They are a part of Sun's JDK and JRE distributions. Although other licensees may choose to distribute these classes, developers cannot depend on their availability in non-Sun implementations. We expect that equivalent functionality will eventually be available in a core API or standard extension. </p>
</blockquote>
http://stackoverflow.com/questions/1906538/association-of-n-to-1-objects-in-a-uml-class-diagram/1906559#19065590Answer by Vincent Ramdhanie for Association of n to 1 objects in a UML class diagramVincent Ramdhanie2009-12-15T10:41:26Z2009-12-15T10:41:26Z<p>Not precisely. It depends on the type of association. If its an aggregation then the default is bi directional navigability, but you can specify the navigation to be one way. I think that it is entirely up to the designer to decide the direction of the navigation between objects.</p>
http://stackoverflow.com/questions/1901861/how-to-remove-duplicate-code-for-all-classes-implementing-an-interface-without-in/1901923#19019230Answer by Vincent Ramdhanie for How to remove duplicate code for all classes implementing an interface without inheriting from a concrete class?Vincent Ramdhanie2009-12-14T16:28:55Z2009-12-14T16:28:55Z<p>If you do not want to extend a super class with the common code you can try to use delegation and wrap the common functionality, let us call it SubWidgetLoader . That is create a class that implements the common functionality and have your IWidget objects contain the SubWidgetLoader. That way each individual Widget does not have to have the code repeated but rather calls on the SubWidgetLoader class to perform the job.</p>
http://stackoverflow.com/questions/1899103/if-element-exists-do-x-jquery/1899119#18991190Answer by Vincent Ramdhanie for If element exists, do X (jQuery)Vincent Ramdhanie2009-12-14T05:43:11Z2009-12-14T05:43:11Z<p>You might find this <a href="http://stackoverflow.com/questions/31044/is-there-an-exists-function-for-jquery">question</a> answers your question.</p>
http://stackoverflow.com/questions/1893780/can-i-have-the-sum-in-one-select/1893788#18937881Answer by Vincent Ramdhanie for Can I have the sum() in one select?Vincent Ramdhanie2009-12-12T15:38:56Z2009-12-12T15:38:56Z<pre><code>select A, sum(B) from table
group by A
</code></pre>
<p>Should do the trick.</p>
http://stackoverflow.com/questions/1889943/generate-javadoc-directly-from-repository/1890035#18900352Answer by Vincent Ramdhanie for Generate javadoc directly from repository?Vincent Ramdhanie2009-12-11T18:36:12Z2009-12-11T18:36:12Z<p>The idea is to never interfere with the repository. Thats why you have to create a working copy to make any modifications. If you use continuous integration tools like Continuum then you can have JavaDocs generated automatically for you. I think (correct me if I'm wrong) that the continuous integration servers check out your code and perform these taks for you so you do not have to perform them yourself.</p>
http://stackoverflow.com/questions/1940331/how-to-map-a-one-to-many-collection-to-a-joined-subclass-when-key-is-in-the-parenComment by Vincent Ramdhanie on how to map a one-to-many collection to a joined subclass when key is in the parent classVincent Ramdhanie2009-12-21T14:21:43Z2009-12-21T14:21:43ZAre you suggesting that you want to table bar to have a FK to the abstractFoo table BUT at the same time only allow foo?http://stackoverflow.com/questions/1931816/a-relation-in-prolog-to-shift-elements-left-rotationallyComment by Vincent Ramdhanie on a relation in prolog to shift elements left rotationallyVincent Ramdhanie2009-12-19T03:42:58Z2009-12-19T03:42:58ZJoel is right. Start by simply removing the first element of the list. If that works then you will only have one more problem to solve. Appending an element to the end of a list.http://stackoverflow.com/questions/1931816/a-relation-in-prolog-to-shift-elements-left-rotationallyComment by Vincent Ramdhanie on a relation in prolog to shift elements left rotationallyVincent Ramdhanie2009-12-19T03:20:32Z2009-12-19T03:20:32ZCan you say what you have tried and what problem you are having with the code you wrote?http://stackoverflow.com/questions/1927594/is-is-possible-to-build-java-code-using-jdk-1-6-to-run-on-jre-1-5/1927608#1927608Comment by Vincent Ramdhanie on Is is possible to build java code using JDK 1.6 to run on JRE 1.5?Vincent Ramdhanie2009-12-18T13:54:11Z2009-12-18T13:54:11ZIn that case use the target option on the command line. I will edit the answer accordingly.http://stackoverflow.com/questions/1911719/jquery-mouse-one-event-with-mouseover-fadein-and-fadeout/1911734#1911734Comment by Vincent Ramdhanie on Jquery mouse one event with mouseover (fadein and fadeout)Vincent Ramdhanie2009-12-16T10:56:50Z2009-12-16T10:56:50ZIf your divs have classes then use .logo1 etc as the selector.http://stackoverflow.com/questions/1911719/jquery-mouse-one-event-with-mouseover-fadein-and-fadeout/1911734#1911734Comment by Vincent Ramdhanie on Jquery mouse one event with mouseover (fadein and fadeout)Vincent Ramdhanie2009-12-16T02:29:16Z2009-12-16T02:29:16ZIf you want content1 to fadeIn then you use $('#content1').fadeIn("slow");
http://stackoverflow.com/questions/1909043/send-data-to-xml-via-ajax-jquery/1909111#1909111Comment by Vincent Ramdhanie on Send data to XML via AJAX jqueryVincent Ramdhanie2009-12-15T20:17:56Z2009-12-15T20:17:56ZI notice that the URL you are using is employee.xml. Does that mean that you are actually loading an xml file? You probably need some server side code like php that will accept the parameter that you are sending and construct the xml document for you dynamically then return only those parts that are relevant.http://stackoverflow.com/questions/1909043/send-data-to-xml-via-ajax-jquery/1909111#1909111Comment by Vincent Ramdhanie on Send data to XML via AJAX jqueryVincent Ramdhanie2009-12-15T18:14:42Z2009-12-15T18:14:42ZThats right. I used id in the example because I did not know your parameter name.http://stackoverflow.com/questions/1909043/send-data-to-xml-via-ajax-jquery/1909111#1909111Comment by Vincent Ramdhanie on Send data to XML via AJAX jqueryVincent Ramdhanie2009-12-15T18:08:38Z2009-12-15T18:08:38ZI modified slightly to show how your code will work with this code. Hope that helps.http://stackoverflow.com/questions/1887898/compare-two-vectors-java/1887960#1887960Comment by Vincent Ramdhanie on Compare Two Vectors (Java)Vincent Ramdhanie2009-12-11T13:09:21Z2009-12-11T13:09:21ZHe is probably refering to this: <a href="http://en.wikipedia.org/wiki/Cosine_similarity" rel="nofollow">en.wikipedia.org/wiki/Cosine_similarity</a>http://stackoverflow.com/questions/1881097/make-select-box-values-faded-out-unclickableComment by Vincent Ramdhanie on make select box values faded out/unclickableVincent Ramdhanie2009-12-10T13:53:33Z2009-12-10T13:53:33ZOh. You want the options disabled, not the whole select box. I deleted my answer cause I misunderstood the question.http://stackoverflow.com/questions/1871176/how-do-i-decode-a-file-encoded-in-the-huffman-algorithmComment by Vincent Ramdhanie on How do I decode a file encoded in the Huffman Algorithm?Vincent Ramdhanie2009-12-09T02:02:51Z2009-12-09T02:02:51Z"I tried all my best but unfortunately i didn't resolve the problem" - Tell us what you tried...show the code that you wrote and say what is going wrong. We will be happy to gove you some pointers.http://stackoverflow.com/questions/1870373/logiciterate-in-struts-1-3-6-netbeans-6-7-1Comment by Vincent Ramdhanie on logic:iterate in struts 1.3.6 (netbeans 6.7.1)Vincent Ramdhanie2009-12-08T23:09:51Z2009-12-08T23:09:51ZIs there anything in the logs at all?http://stackoverflow.com/questions/1869881/jquery-using-post-ajax-results-in-multiple-functions/1869909#1869909Comment by Vincent Ramdhanie on JQuery - Using post/ajax results in multiple functionsVincent Ramdhanie2009-12-08T21:18:26Z2009-12-08T21:18:26ZI was trying to explain this same thing but took way too long. +1.http://stackoverflow.com/questions/1860457/how-to-count-instances-of-character-in-sql-columnComment by Vincent Ramdhanie on How to count instances of character in SQL ColumnVincent Ramdhanie2009-12-07T14:58:22Z2009-12-07T14:58:22ZCan you specify the platform? MySQL, MSSQl, Oracle?