鱼C论坛

 找回密码
 立即注册
查看: 2631|回复: 2

关于TADOQuery.Fields的使用

[复制链接]
发表于 2013-7-1 16:08:10 | 显示全部楼层 |阅读模式
1鱼币
谁能提供下TADOQuery.Fields的具体使用说明和案例呢?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2013-7-2 14:31:25 | 显示全部楼层
int book_id_test( int id )//这里用bool要加头文件 1表示true 0表示false
{
        struct book * p = head;
        for ( p = head; p; p = p->next )
        {
                if ( p->book_id == id )
                        return 1;
        }
        return 0;
}

void add_book()                             //添加图书信息
{

    struct book *asd;
    asd = (struct book*)malloc(sizeof(struct book));
        printf("请输入书籍编号:\n");
        scanf("%d",&(asd->book_id));
        printf("请输入书籍名称:");
        scanf("%s",asd->book_name);
        printf("请输入书籍作者名字");
        scanf("%s",asd->book_writer);
        while ( book_id_test( asd->book_id ) )
        {
                printf( "输入id以存在请重新输入" );
                fflush( stdin );
                printf("请输入书籍编号:\n");
                scanf("%d",&(asd->book_id));
                printf("请输入书籍名称:");
                scanf("%s",asd->book_name);
                printf("请输入书籍作者名字");
                scanf("%s",asd->book_writer);
        }

    asd->next = NULL;

    if(head == NULL)
    {
        head = asd;
    }
    else
    {
        asd->next=head;
        head=asd;
    }
    return;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2013-7-6 20:00:02 | 显示全部楼层
没有听说过这个东西~~
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-22 07:25

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表