>  기사  >  데이터 베이스  >  MySQL을 시작하기 위한 시간 관련 함수

MySQL을 시작하기 위한 시간 관련 함수

黄舟
黄舟원래의
2017-01-19 15:46:171197검색

바이너리 프로토콜을 사용하면 MYSQL_TIME 구조를 사용하여 날짜 및 시간 값(DATE, TIME, DATETIME 및 TIMESTAMP)을 보내고 받을 수 있습니다. 이 구조의 멤버는 섹션 25.2.5, “C API 준비 명령문의 데이터 유형”에 설명되어 있습니다.

임시 데이터 값을 전송하려면 mysql_stmt_prepare()를 사용하여 준비된 명령문을 생성할 수 있습니다. 그런 다음 mysql_stmt_execute()를 호출하여 명령문을 실행하기 전에 다음 단계를 사용하여 각 임시 매개변수를 설정할 수 있습니다.

데이터 값과 연관된 MYSQL_BIND 구조에서 buffer_type 멤버를 해당 유형으로 설정합니다. 전송된 임시 값의 유형을 지정합니다. DATE, TIME, DATETIME 또는 TIMESTAMP 값의 경우 buffer_type을 각각 MYSQL_TYPE_DATE, MYSQL_TYPE_TIME, MYSQL_TYPE_DATETIME 또는 MYSQL_TYPE_TIMESTAMP로 설정합니다.

MYSQL_BIND 구조의 버퍼 멤버를 임시 값을 전달하는 데 사용되는 MYSQL_TIME 구조의 주소로 설정합니다.

통과하려는 임시 지원 유형과 일치하도록 MYSQL_TIME 구조의 멤버를 채웁니다.

mysql_stmt_bind_param()을 사용하여 매개변수 데이터를 명령문에 바인딩합니다. 그런 다음 Mysql_stmt_execute()를 호출할 수 있습니다.

임시 값을 검색하려면 비슷한 단계를 따르되 buffer_type 멤버를 허용하려는 값 유형으로 설정하고 버퍼 멤버를 반환 값이 있어야 하는 MYSQL_TIME 구조의 주소로 설정하세요. 배치됩니다. mysql_stmt_execute()를 호출한 후 결과를 얻기 전에 mysql_bind_results()를 사용하여 버퍼를 명령문에 바인딩합니다.

구체적으로 코드를 보세요:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <dlfcn.h>
#include <mysql/mysql.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <termios.h>
#include <mysql/mysql.h>
int main()
{
    int         ret = 0, status = 0;
    MYSQL       *mysql;
    MYSQL_RES   *result;
    mysql =mysql_init(NULL);
    mysql =mysql_real_connect(mysql, "localhost", "root", "123456", "mydb2", 0, NULL, CLIENT_MULTI_STATEMENTS );
    if (mysql == NULL)
    {
        ret = mysql_errno(mysql);
        printf("%s", mysql_error(mysql));
        printf("func mysql_real_connect() err :%d\n", ret);
        return ret;
    }
    else
    {
        printf(" ok......\n");
    }
    MYSQL_TIME  ts;
    MYSQL_BIND  bind[3];
    MYSQL_STMT  *stmt;
     //注意:
     // 创建的表语句
     // create table test_table (date_field date,  time_field time,  timestamp_field timestamp );
    char query[1024] = "INSERT INTO test_table(date_field, time_field, timestamp_field) VALUES(?,?,?)";
    stmt = mysql_stmt_init(mysql);
    if (!stmt)
    {
        fprintf(stderr, " mysql_stmt_init(), out of memory\n");
        exit(0);
    }
    if (mysql_stmt_prepare(stmt, query, strlen(query)))
    {
        fprintf(stderr, "\n mysql_stmt_prepare(), INSERT failed");
        fprintf(stderr, "\n %s", mysql_stmt_error(stmt));
        exit(0);
    }
    /* set up input buffers for all 3 parameters */
    bind[0].buffer_type= MYSQL_TYPE_DATE;
    bind[0].buffer= (char *)&ts;
    bind[0].is_null= 0;
    bind[0].length= 0;
    //
    bind[1]= bind[2]= bind[0];
    //...
    mysql_stmt_bind_param(stmt, bind);
    /* supply the data to be sent in the ts structure */
    ts.year= 2002;
    ts.month= 02;
    ts.day= 03;
    ts.hour= 10;
    ts.minute= 45;
    ts.second= 20;
    mysql_stmt_execute(stmt);
    // Close the statement //
    if (mysql_stmt_close(stmt))
    {
      fprintf(stderr, " failed while closing the statement\n");
      fprintf(stderr, " %s\n", mysql_stmt_error(stmt));
      exit(0);
    }
    mysql_close(mysql);
}

위는 MySQL을 시작하기 위한 시간 관련 함수 내용입니다. 더 많은 관련 내용은 PHP 중국어 홈페이지(www.kr)를 참고해주세요. .php.cn)!


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.