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
);
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.