table

Hibernate join tables duplicate entry - Could not execute JDBC batch update

I have a simple domain class Licensee: @Entity @Table(name = "LICENSEE") @Cache(usage = CacheConcurrencyStrategy.READ_WRITE) public class Licensee implements Serializable, Comparable { private Integer id; private String orgName; /* ... */ private Set<Address> address = new HashSet<Address>(); @Id @Column(name ...

Have 2nd Html table cell span rest of screen

I have a table with two columns and one row, and 100% width across the screen. I want the first column to take up as much space as the content in it will fill. This content shouldn't take up the entire screen, so I'm not worried about wrapping. I then want the second cell to take up the remainder of the horizontal space. How would I ...

Right join a table twice to a second table with each alias inner joined to to a third table's two aliases

Maybe I'm going about it the wrong way. Here is what I'm trying to do and my problem. I have 3 tables. assets (a computer, network device, etc) ports (a port on the computer, network device, etc) port_connections (has a port_id_a and port_id_b field and links each port and therefor each asset together) It's really just a way to track v...

Mysql create table query problems?

I want to create a table, which name something like : name_thisyear_thisweekofyear, e.g -> name_2009_40 I tried this query: CREATE TABLE IF NOT EXISTS name_YEAR(NOW())_WEEKOFYEAR(NOW())(id int NOT NULL AUTO_INCREMENT PRIMARY KEY, phone_no int, created datetime, deleted datetime) It doesnt work. Please help Error Message: #1064 - Y...

How to load, save and display data from GridView to XML?

How to load, save and display data from GridView to XML? Not XML file on the hard disk, but a temporary XML variable to save it all in a single field of XML type in a database. ...

Using CSS, how do I set the formatting of just a single cell or a single column?

Using CSS, how do I set the formatting of just a single cell or a single column? ...

DIV or Table for showing database data

I know it's told to use table for tabular data, but I see in many websites and CMS that they use div for showing database content , for example in admin area for editing them, shouldnt they use table for showing these data ? What's the best way ? ...

Create Delete/Edit buttons for muliple records from linq using hidden value?

Hello all, I am using c# .net. aspx form <asp:Table ID="viewV" runat="server"> <asp:TableRow> <asp:TableHeaderCell>Name</asp:TableHeaderCell> <asp:TableHeaderCell>Type</asp:TableHeaderCell> </asp:TableRow> </asp:Table> Code Behind vRepository getV = new vRepository(); var viewAllV = getV....

Table - fixed header, scrollable body, most robust/simple solution?

Hi guys, Looking for a solution to create a table with a scrollable body, and a static/fixed header. Searching around seems to produce MANY flaky pieces of code, either not working in IE, requireing a huge amount of Javascript and tweaking, or a silly amount of CSS hacks etc. To be honest, if it's a case of CSS hacks or Javascript, I ...

JTable Accessible Text (508 Compliance)

On a JTable in Java, how do I set the accessible text on a column, row and/or cell? Normally you would do component.getAccessibleContext().setAccessibleName(text); and that is what JAWS would read upon focusing, but a table "cell" doesn't seem to exist, and columns (from the ColumnModel) do not implement Accessible. I've tried doing so...

jQuery - slide up / edit html / slide down

I'm trying to slide a div containing a table up, change the rows of the table with ajax calls, and then slide the containing table back down. I can't seem to get the series of callbacks to work effectively. $("div#grid").slideUp('fast', function() { //eaery row but the first $("#testtable tr") .not(":first") .fi...

What is the cross-browser way to set a max height on a table?

I have a table where I set the height of the tbody #ml_container table>tbody{ height: 500px; overflow: auto; overflow-x: hidden; } The issue is that when the table has 1 entry, the 1 entry is 500px high in FF3. I would like the 1 entry to still be 20px (or whatever I specify). Another issue is that Safari doesn't even recognize this...

JavaScript delete merged table cell

Hey folks, I have been working on a scheduling website for the past few weeks. I am showing the schedules as PHP generated html-tables. I use merged cells for showing events. I have come to a problem when trying to delete events using JS. Since those are merged cells, using rowspan, I have to go through the table and re-adding empty cel...

Hibernate Criteria contains-in on an association to a table

Good day, I have a Hibernate mapping that looks something like this: <class name="MyEntity"> <set name="scalarSet" table="(select fk, scalar_value from other_table)"> <key column="fk"/> <property column="scalar_value" type="long"/> </set> </class Given this, how do I query such that a value of MyEntity.scalarSet (which is...

C# - Quickest way to run SQL on a multidimensional array.

I want to take a table as represented by a multidimensional string array (column names in another array) and use a SQL SELECT statement to get a subset of rows. The Catch: - the table is input by the user (different table each time) - the SQL is also input by the user Do I need to: 1) Create a table in SQL 2) Populate the table in SQ...

What do you think about designing an HTML table by using div ?

Hi, I have seen many HTML table related questions in SO. Many questions about browser specific bugs like CSS and JavaScript by involving HTML table is usually asked. A earlier version of DataTable YUI markup looks like as follows: // dynamically generated <table> <tr> <td>Some content</td> <td>Other content</td> ...

Table of TextBoxes isn't displayed as deisred

I am adding texboxes into a table (type Table) but I can't add them. I can't add more than one cell to each row, any idea? TextBox[] tx = new TextBox[10]; TableCell[] tc = new TableCell[10]; TableRow[] tr = new TableRow[10]; for (int i = 0; i < 10; i++) { tx[i] = new TextBox(); t...

positioning inside a html table.

Hi, I have a html table inside which i have a submit button. Now, i call a function in my javascript file, that is supposed to create a captcha, and place it in the html page within the table where i have the submit button. And in the javascript, am doing a document.write() and pasting the image from the js file into the html page. Now...

Continuous string not getting wrapped in td

When i put a long continuos string in my fixed width td ,it is not getting wrapped. The sting increases the width of my table. Can anybody plz help me with this. for. e.g. this is my text --- works fine as in td width is fixed only height increases but if i insert thisismytext --- then it increases the width of my table. ...

latex tabular: align lstlisting top or bottom

Hi, Im trying to put lstlistings into a table. Those listings have different lengths and unfortunately they are vertically aligned within their table cell - but i want both of them to have vertical alignment top. | A| |A A| So i get|A B| instead of |B B| |B C| | C| | D| | D|...