2006/12/10, Ernst Mayerhofer <[EMAIL PROTECTED]>: > > Hi, > > is it possible to get access to a SQLite database in a kernel module? >
I think it is possible but why doing a such thing? Are you thinking to use sqlite3 as filesystem: saving data in a partition or on a media without previous formatting? Even in this case it is better to use fuse (file system in user space) and boot the system from a rootfs/ramfs from a initrd image. Kernel space does not mean more speed but sometimes means smaller latency. If you need more responsive system try to use nice/renice or realtime patch like RTAI. Moving in kernel space what has been designed to works in user space is not a good idea and it is the last you would consider. Cheers, -- /roberto
