It works, but the idea is to use SQL to control the field size. For instance,
salary number
should be ...
salary number (8,2)
Access balks at that type of formatting.
Brian
In the CREATE statement below, ACCESS indicates that number(3) is a syntax error. What is wrong with this very simple statement? Thanks for your help.
Brian
CREATE TABLE tblEmployee
(
firstName varchar(30),
lastName varchar(30),
title varchar(30),
age number(3),
salary number
);
println does indeed work
Why wouldn't the FileWriter class include a similar method? This class only includes a write method.
Anybody know the logic?
Brian
I am outputting user input from various JTextFields to a text file. This part works fine.
However, I need to tell the text file to move to a new line when additional user input is appended to the file. Just sending a '\n' isn't working. Right now I have one giant line of text in my file.
Any...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.