User rmh15 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T01:49:38Zhttp://stackoverflow.com/feeds/user/69108http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1838520/hibernate-problems-with-auto-increment-id-mysql-50Hibernate problems with Auto Increment ID MYSQL 5 rmh152009-12-03T08:37:02Z2009-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><hibernate-mapping>
<class name="org.XXXXXXX.Contact" table="contact">
<id name="id" column="id" type="int" unsaved-value="null">
<generator class="native" />
</id>
</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-jdbc1Hibernate vs. JDBCrmh152009-05-05T18:03:42Z2009-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-flex0What does {variable} do in flexrmh152009-06-24T14:04:46Z2009-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><mx:label text="{variable}"/></code></p>
http://stackoverflow.com/questions/1201796/flex-getting-a-variable-from-your-regular-component-to-an-inline-item-renderer0Flex: Getting a variable from your regular component to an inline item rendererrmh152009-07-29T17:19:51Z2009-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><mx:List... ></code></p>
<pre><code> <mx:itemRenderer>
<mx:Component>
<comp:SetSizeLabel numIps="{data.numInSet}" remaining= "{remaining}"/>
</mx:Component>
</mx:itemRenderer>
</code></pre>
<p></p>
http://stackoverflow.com/questions/1139705/sizing-flex-datagridcolumnsdynamic-number0Sizing Flex DataGridColumns(Dynamic number) rmh152009-07-16T19:12:48Z2009-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-bold0ActionScript 3 Labels Boldrmh152009-06-30T17:54:08Z2009-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-package1JDBC Dates Deprecated in Java (java.sql package)rmh152009-05-20T12:34:44Z2009-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-engineer11From Computer Scientist to Software Engineer rmh152009-05-14T13:50:38Z2009-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-programming6Sources to learn more hardware centered programmingrmh152009-05-08T14:40:38Z2009-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#8353039Answer by rmh15 for Hadoop examples?rmh152009-05-07T15:21:49Z2009-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#1840760Comment by rmh15 on Hibernate problems with Auto Increment ID MYSQL 5 rmh152009-12-06T22:59:12Z2009-12-06T22:59:12ZChanging 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#1838529Comment by rmh15 on Hibernate problems with Auto Increment ID MYSQL 5 rmh152009-12-03T13:14:33Z2009-12-03T13:14:33ZI 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#1201846Comment by rmh15 on Flex: Getting a variable from your regular component to an inline item rendererrmh152009-07-29T17:45:26Z2009-07-29T17:45:26ZThanks, that was extremely helpful.http://stackoverflow.com/questions/1139705/sizing-flex-datagridcolumnsdynamic-number/1141709#1141709Comment by rmh15 on Sizing Flex DataGridColumns(Dynamic number) rmh152009-07-24T21:08:05Z2009-07-24T21:08:05ZI went back and did it this and it works much better.http://stackoverflow.com/questions/1139705/sizing-flex-datagridcolumnsdynamic-number/1143673#1143673Comment by rmh15 on Sizing Flex DataGridColumns(Dynamic number) rmh152009-07-17T16:25:48Z2009-07-17T16:25:48ZThis 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#887663Comment by rmh15 on JDBC Dates Deprecated in Java (java.sql package)rmh152009-05-20T13:17:36Z2009-05-20T13:17:36ZOh that makes more sense thankshttp://stackoverflow.com/questions/887653/jdbc-dates-deprecated-in-java-java-sql-package/887663#887663Comment by rmh15 on JDBC Dates Deprecated in Java (java.sql package)rmh152009-05-20T12:55:21Z2009-05-20T12:55:21ZThe 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-engineerComment by rmh15 on From Computer Scientist to Software Engineer rmh152009-05-14T13:57:39Z2009-05-14T13:57:39ZI 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#55366Comment by rmh15 on Best tools for creating website wireframesrmh152009-05-11T15:15:27Z2009-05-11T15:15:27ZI wasn't a fan of Denim...it seemed too messy. To each their own though.