natalieG Posted May 5, 2006 Share Posted May 5, 2006 can someone tell me why these two queries for generating tables dot execute properly?Thankss,Jennifer $CONTACT_QUERY="CREATE TABLE ATMELPIM_CONTACT(CONTACT_INDEX INTEGER,CONTACT_ENTRYDATE INTEGER,CONTACT_DATESTR VARCHAR(20),CONTACT_REP VARCHAR(20),CONTACT NAME VARCHAR(40),CONTACT_PROJECT VARCHAR(25),CONTACT_ADDRESS1 VARCHAR(50),CONTACT_ADDRESS2 VARCHAR(50),CONTACT_CITY VARCHAR(50),CONTACT_STATE VARCHAR(10),CONTACT_ZIPCODE VARCHAR(12),CONTACT_PHONE VARCHAR(20),CONTACT_EXTENSION VARCHAR(10))";$NOTE_QUERY= "CREATE TABLE ATMELPIM_NOTES(NOTE_INDEX INTEGER,NOTE_ENTRYDATE INTEGER,NOTE_DATESTR varchar(20),NOTE_COMPANY VARCHAR($FIELD_LENGTH),NOTE_CONTACT_NAME VARCHAR(40),NOTE_TEXT VARCHAR(8192))"; Quote Link to comment https://forums.phpfreaks.com/topic/9157-table-creation/ Share on other sites More sharing options...
litebearer Posted May 6, 2006 Share Posted May 6, 2006 May be an obvious question, but did you connect to the database AND execute the query? Perhaps a little more of your code would help.Lite... Quote Link to comment https://forums.phpfreaks.com/topic/9157-table-creation/#findComment-33767 Share on other sites More sharing options...
Barand Posted May 6, 2006 Share Posted May 6, 2006 Or it could be that the account you are using to connect does not have CREATE privileges.Although in your 2nd query you probably get an error as varchar has a max length of 255. Use TEXT type. Quote Link to comment https://forums.phpfreaks.com/topic/9157-table-creation/#findComment-33809 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.