I write a function in my program:
char *ldll(char *s1)
{
return s1;
}
and use it to modify my sqlite db:
sprintf(sql,"insert into student select 3,ldll('bb'),22;");
but the error msg is "no such function: ldll"
_______________________________________________
sqlite-users mailing list
[email protected]
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

