MySQL Forums
Forum List  »  Newbie

Create Table Error using C API
Posted by: Steve Graber
Date: June 09, 2005 11:17AM

I'm having trouble creating tables using the C API. The same query works fine from the mysql command line interface. Here is the C code.

char* szCreateTableSQL = "CREATE TABLE DATALOG (Timestamp TIMESTAMP, TransportType INT, Address VARCHAR(64), DBName VARCHAR(64), UserName VARCHAR(64), Password VARCHAR(64), DataLog1 VARCHAR(255), DataLog2 VARCHAR(255), DataLog3 VARCHAR(255), DataLog4 VARCHAR(255), DataLog5 VARCHAR(255))";

if ( mysql_query( myData, szCreateTableSQL ) )
{
}

I'm using version 4.1 of MySQL. Can anyone tell me what I am doing wrong?

Thank you for your help,
Steve

Options: ReplyQuote


Subject
Written By
Posted
Create Table Error using C API
June 09, 2005 11:17AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.