如何使用C代码连接SQL TABLE列

时间:2019-06-06 10:41:28

标签: mysql c packet-sniffers

我想将下面C中给出的代码输出连接到我在数据库中创建的SQL Table列Response_Code,Command和Response_Parameter。

我是编码方面的新手,非常感谢您的帮助。

printf("\nResponse Code: ");
for(i = 54; i<=56; i++)
    {       

    printf("%c", packet[i]);
 }
printf("\nCommand: ");
for(i = 54; i<=57; i++)
    {       
    printf("%c", packet[i]);
 }
printf("\nResponse Parameter: ");
for(i = 58; i<=104; i++)
    {       
    printf("%c", packet[i]);
 }

我想要MYSQL TABLE列Response_Code,Command,Response_Parameter NAMELY中的响应代码,命令和响应参数的输出。...求助

0 个答案:

没有答案