Re: Building C string for Insert!!

2004-12-13 Thread SGreen
To be perfectly honest I believe you have completely confused the programming language you are using with the SQL statements you need to use to interact with the server. These are two separate languages and have their own separate syntaxes. You can use almost any programming language and the

Re: Building C string for Insert!!

2004-12-13 Thread Gleb Paharenko
Hello. I don't know if it is exactly what you want, but look at this: http://dev.mysql.com/doc/mysql/en/SQLPS.html http://dev.mysql.com/doc/mysql/en/C_API_Prepared_statements.html >I am building the insert string for inserting into particular table t1 >using C program. The below st

Building C string for Insert!!

2004-12-13 Thread lakshmi.narasimharao
Hi, I am building the insert string for inserting into particular table t1 using C program. The below string is stored in a variable. say sqlstmt = 'INSERT INTo T1 values(:id,:ename);' The values for the field's id, name will come from the front end. The sql string will be executed using Pro *C

Building C string for Insert!!

2004-12-13 Thread lakshmi.narasimharao
I am building the insert string for inserting into particular table t1 using C program. The below string is stored in a variable. say sqlstmt = 'INSERT INTo T1 values(:id,:ename);' The values for the field's id, name will come from the front end. The sql string will be executed using Pro *C in O