Stuck on this I can't find an answer on the forums: it's simple all I need to do is write a statement to ask if the database has a table with a particular name already....
e.g
If any one can help they'll be glad to know that it should be the finishing part of a 4 month personal project....phew
e.g
Code:
if (*****TableName = table already in DB)
{
statement.executeUpdate("INSERT INTO " + TableName +
"VALUES (newTableName, rateDate);
}
// Else create a new table
else
{
statement.executeUpdate("CREATE TABLE " + newTableName )
}
If any one can help they'll be glad to know that it should be the finishing part of a 4 month personal project....phew