On 07/06/2010 15:18, pb2208 wrote:
Mark,I read the reference and tried several interations before I asked the original question. I would really like to get this working. The following commands have been tried: String cmdSQL = "Create Table mytable ('393' Decimal(3))"; String cmdSQL = 'Create Table mytable ("393" Decimal(3))'; String cmdSQL = 'Create Table mytable (\"393\" Decimal(3))'; These all give me 'Unclosed Character Literal' error.
String cmdSQL = "Create Table mytable (\"393\" Decimal(3))"; assuming this is Java. Mark Thornton
