User rmh15 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T01:49:38Z http://stackoverflow.com/feeds/user/69108 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1838520/hibernate-problems-with-auto-increment-id-mysql-5 0 Hibernate problems with Auto Increment ID MYSQL 5 rmh15 2009-12-03T08:37:02Z 2009-12-03T15:43:28Z <p>So, I just stood up a Spring Hibernate app and I can't seem to get my mapping file right. I am using MySql 5 and an auto incrementing key. Here is the ID portion of my mapping file.</p> <pre><code>&lt;hibernate-mapping&gt; &lt;class name="org.XXXXXXX.Contact" table="contact"&gt; &lt;id name="id" column="id" type="int" unsaved-value="null"&gt; &lt;generator class="native" /&gt; &lt;/id&gt; </code></pre> <p>Here is the SQL generated</p> <blockquote> <p>insert into contact (title, first_name, middle_name, last_name, suffix, job_title, dob, passport_number, passport_expiration, employer, dietary_restrictions, secondary_contact_fname, secondary_contact_lname, secondary_contact_mname, secondary_contact_title, secondary_contact_suffix, secondary_contact_job_title, emergency_contact_name, emergency_contact_phone, emergency_contact_notes, is_company) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)</p> </blockquote> <p>Here is the important part of the stack trace:</p> <p>org.hibernate.AssertionFailure: null id in org.XXXXXXX.Contact entry (don't flush the Session after an exception occurs)</p> <p>I have tried setting the unsaved-value to "0" and "-1" and sending them over the wire. Any ideas on what I am doing wrong?</p> http://stackoverflow.com/questions/826165/hibernate-vs-jdbc 1 Hibernate vs. JDBC rmh15 2009-05-05T18:03:42Z 2009-11-11T11:09:33Z <p>I am working on a project that previously used Hibernate. Honestly, it seems like Hibernate complicates it more than JDBC would have. Also, it seems that a lot of the power of the relational database is lost. What are the advantages of using Hibernate over JDBC?</p> http://stackoverflow.com/questions/1038597/what-does-variable-do-in-flex 0 What does {variable} do in flex rmh15 2009-06-24T14:04:46Z 2009-09-17T13:22:09Z <p>I have been using { } around variables in MXML without really understanding what they are for. I am now needing to know if I should use it around a variable..what does that do?</p> <p>example: <code>&lt;mx:label text="{variable}"/&gt;</code></p> http://stackoverflow.com/questions/1201796/flex-getting-a-variable-from-your-regular-component-to-an-inline-item-renderer 0 Flex: Getting a variable from your regular component to an inline item renderer rmh15 2009-07-29T17:19:51Z 2009-07-29T17:29:48Z <p>I am trying to turn labels red when they can no longer be added to a list because of size requirements. The renderer works but Flex creates a separate component. I can't think of any good way to get that value to the new component. Any ideas?</p> <p><code>&lt;mx:List... &gt;</code></p> <pre><code> &lt;mx:itemRenderer&gt; &lt;mx:Component&gt; &lt;comp:SetSizeLabel numIps="{data.numInSet}" remaining= "{remaining}"/&gt; &lt;/mx:Component&gt; &lt;/mx:itemRenderer&gt; </code></pre> <p></p> http://stackoverflow.com/questions/1139705/sizing-flex-datagridcolumnsdynamic-number 0 Sizing Flex DataGridColumns(Dynamic number) rmh15 2009-07-16T19:12:48Z 2009-07-17T14:37:14Z <p>I have a DataGrid that has between 4-10 columns. I want the columns to be of width '50'. I have already set the width attribute in MXML. I am using "colName.hide = true" to hide various columns depending on whether I have data. I find that my columns expand when I have less columns. Is there a way to set the max width of a column or force it to keep the same width? </p> http://stackoverflow.com/questions/1065062/actionscript-3-labels-bold 0 ActionScript 3 Labels Bold rmh15 2009-06-30T17:54:08Z 2009-06-30T17:58:49Z <p>I am dynamically adding labels to a form and I would like to set some of them to be bold. I can;t seem to find an easy way to make a label bold in ActionScript. It is very easy to do in MXML. I would think that it would simply be an attribute that is set. How do you make a label bold?</p> http://stackoverflow.com/questions/887653/jdbc-dates-deprecated-in-java-java-sql-package 1 JDBC Dates Deprecated in Java (java.sql package) rmh15 2009-05-20T12:34:44Z 2009-05-21T01:51:27Z <p>Hello,</p> <p>I am working with JDBC and MySQL. I have a date column that I need included in my result set. Unfortunately, I cannot find a class in Java to retrieve the date. The SQL Date class is deprecated. How do you get Date objects from a result set?</p> http://stackoverflow.com/questions/863435/from-computer-scientist-to-software-engineer 11 From Computer Scientist to Software Engineer rmh15 2009-05-14T13:50:38Z 2009-05-15T03:56:55Z <p>Hello Stackoverfellows,</p> <p>I graduated in December in Computer Science and have acquired a Software Engineering position. I have been banging my head up against the wall for 2 months trying to learn Hibernate, Spring and everything else that has been thrown at me in my first project. Prior to accepting this job I had experience only in programming. Application architecture and engineering tools have been very difficult to grasp. I was hoping that someone would be able to tell me a good place to start understanding how Java based web applications work. There are so many components and I can't figure out how everything goes together. So, my questions are.</p> <ol> <li>How do you go about learning a new technology?</li> <li>What approach is best for learning multiple technologies at the same time? </li> </ol> http://stackoverflow.com/questions/840114/sources-to-learn-more-hardware-centered-programming 6 Sources to learn more hardware centered programming rmh15 2009-05-08T14:40:38Z 2009-05-12T08:03:50Z <p>I'm looking to learn how to build/program simple hardware and later move on to simple robotics. Where should I begin? What are the best sites to buy the hardware? Any recommendations on the type of hardware/language I should use to start?</p> http://stackoverflow.com/questions/735791/hadoop-examples/835303#835303 9 Answer by rmh15 for Hadoop examples? rmh15 2009-05-07T15:21:49Z 2009-05-07T15:21:49Z <p>One of the best resources that I have found to get started is Cloudera. They are a startup company comprised of mainly ex-Google and ex-Yahoo employees. On their page there is a training section with lessons on the different technologies <a href="http://www.cloudera.com/hadoop-training" rel="nofollow">here</a>. I found that very useful in playing with straight Hadoop, Pig and Hive. They have a virtual machine that you can download that has everything configured and some examples that help you get coding. All of that is free in the training section. The only thing that I couldn't find is a tutorial on HBase. I have been looking for one for a while. Best of luck. </p> http://stackoverflow.com/questions/1838520/hibernate-problems-with-auto-increment-id-mysql-5/1840760#1840760 Comment by rmh15 on Hibernate problems with Auto Increment ID MYSQL 5 rmh15 2009-12-06T22:59:12Z 2009-12-06T22:59:12Z Changing the generator class worked. Through the link provided I was able to fix my problem. I ended up suing increment rather than identity. Thanks! http://stackoverflow.com/questions/1838520/hibernate-problems-with-auto-increment-id-mysql-5/1838529#1838529 Comment by rmh15 on Hibernate problems with Auto Increment ID MYSQL 5 rmh15 2009-12-03T13:14:33Z 2009-12-03T13:14:33Z I did this but it didn't fix it. Thanks though. http://stackoverflow.com/questions/1201796/flex-getting-a-variable-from-your-regular-component-to-an-inline-item-renderer/1201846#1201846 Comment by rmh15 on Flex: Getting a variable from your regular component to an inline item renderer rmh15 2009-07-29T17:45:26Z 2009-07-29T17:45:26Z Thanks, that was extremely helpful. http://stackoverflow.com/questions/1139705/sizing-flex-datagridcolumnsdynamic-number/1141709#1141709 Comment by rmh15 on Sizing Flex DataGridColumns(Dynamic number) rmh15 2009-07-24T21:08:05Z 2009-07-24T21:08:05Z I went back and did it this and it works much better. http://stackoverflow.com/questions/1139705/sizing-flex-datagridcolumnsdynamic-number/1143673#1143673 Comment by rmh15 on Sizing Flex DataGridColumns(Dynamic number) rmh15 2009-07-17T16:25:48Z 2009-07-17T16:25:48Z This is what I ended up doing yesterday. It isn't as elegant as I would have liked but it worked:) I would have preferred to keep it the width and height of the datagrid in percent form. I couldn't do that because it kept going crazy. http://stackoverflow.com/questions/887653/jdbc-dates-deprecated-in-java-java-sql-package/887663#887663 Comment by rmh15 on JDBC Dates Deprecated in Java (java.sql package) rmh15 2009-05-20T13:17:36Z 2009-05-20T13:17:36Z Oh that makes more sense thanks http://stackoverflow.com/questions/887653/jdbc-dates-deprecated-in-java-java-sql-package/887663#887663 Comment by rmh15 on JDBC Dates Deprecated in Java (java.sql package) rmh15 2009-05-20T12:55:21Z 2009-05-20T12:55:21Z The problem is that the only constructor that remains is the one to create a date passing in millis. Also, all of its set and get methods that don't use millis are deprecated. Unless SQL returns the date in millis this seems kind of silly. http://stackoverflow.com/questions/863435/from-computer-scientist-to-software-engineer Comment by rmh15 on From Computer Scientist to Software Engineer rmh15 2009-05-14T13:57:39Z 2009-05-14T13:57:39Z I think it is understanding how everything clicks together. Currently I am using Maven, Flex, Spring and Hibernate. All of them are new to me so it can get really confusing. http://stackoverflow.com/questions/55363/best-tools-for-creating-website-wireframes/55366#55366 Comment by rmh15 on Best tools for creating website wireframes rmh15 2009-05-11T15:15:27Z 2009-05-11T15:15:27Z I wasn't a fan of Denim...it seemed too messy. To each their own though.