Mysql
 sql >> Cơ Sở Dữ Liệu >  >> RDS >> Mysql

Làm cách nào để chèn giá trị vào cơ sở dữ liệu (mySql) bằng chương trình cpp?

Hãy thử như sau:

MYSQL mysql,*connection;
MYSQL_RES result;
MYSQL_ROW row;


mysql_init(&mysql);
connection =mysql_real_connect(&mysql,"localhost","root","12356","hari",0,NULL,0);

if (connection==NULL)
{
    cout<<mysql_error(&mysql)<<endl;
}
else{
    nQueryState = mysql_query(&mysql,"insert into  userdetails values('"+nId+"','"+szName+"','"+szPassword+"','"+szQuestion+"','"+szPhone+"')");

  if (nQueryState !=0) {
    cout << mysql_error(connection) << endl;
    return 1;
  }
}

mysql_close(&mysql);

Tham khảo: http:// www .codeproject.com / Question / 337901 / How-to-insert-data-in-database-using-Cplusplus




  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Python MySQL - CHỌN hoạt động nhưng không XÓA?

  2. định dạng ngày giờ mysql sử dụng c #

  3. Đọc các dấu hiệu như č ć đ š ž từ cơ sở dữ liệu MySql

  4. Hiển thị kết quả truy vấn SQL trong php

  5. Gói các phần tử mảng trong div dựa trên cùng một giá trị