What does you database table definition look like? Just in case..

Signature
Thanks in Advance...
IchBin, Pocono Lake, Pa, USA
http://weconsultants.servebeer.com/JHackerAppManager
__________________________________________________________________________
'If there is one, Knowledge is the "Fountain of Youth"'
-William E. Taylor, Regular Guy (1952-)
>>> z0man
> What does you database table definition look like? Just in case..
=======================
START OF MYSQLDUMP:news
=======================
-- phpMyAdmin SQL Dump
-- version 2.6.0-pl3
-- http://www.phpmyadmin.net

Signature
-- Host: localhost
-- Generation Time: Jan 29, 2006 at 05:00 PM
-- Server version: 4.1.13
-- PHP Version: 5.0.4
--
-- Database: `dbuild`
--
-- --------------------------------------------------------
--
-- Table structure for table `news`
--
DROP TABLE IF EXISTS `news`;
CREATE TABLE IF NOT EXISTS `news` (
`n_id` mediumint(9) NOT NULL auto_increment,
`heading` varchar(255) NOT NULL default '',
`article` text NOT NULL,
PRIMARY KEY (`n_id`),
FULLTEXT KEY `article` (`article`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;
--
-- Dumping data for table `news`
--
INSERT INTO `news` VALUES (1, 'My first Article', '');
INSERT INTO `news` VALUES (2, 'My first', 'text goes here');
INSERT INTO `news` VALUES (3, 'heading', 'hi this is my second');
INSERT INTO `news` VALUES (4, 'Test Heading 3', 'My first document');
INSERT INTO `news` VALUES (5, 'test 4', '');
INSERT INTO `news` VALUES (6, 'HI AGAIN', 'My 5th ');
---------
=======================
END OF MYSQLDUMP:news
=======================
>>> z0man
> What does you database table definition look like? Just in case..
Here is a better view of the table
+---------+--------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+---------+--------------+------+-----+---------+----------------+
| n_id | mediumint(9) | | PRI | NULL | auto_increment |
| heading | varchar(255) | | | | |
| article | text | | MUL | | |
+---------+--------------+------+-----+---------+----------------+
I saw somone trying to enumarate the SELECT instead of using the * for
example,
mysql> select `heading`,`article` from news where n_id = 4;
+----------------+-------------------+
| heading | article |
+----------------+-------------------+
| Test Heading 3 | My first document |
+----------------+-------------------+
I compiled it Java and saddly no it didn't work
z0man