对于我被分配的这项大学作业。
我必须开发一个应用程序,以便在以嵌入式模式运行 J2ME 和 Apache Derby 的 PDA 上使用。
我想将图像导入/导出到数据库。我该怎么做?将图像存储为 blob 是否合适?
对于我被分配的这项大学作业。
我必须开发一个应用程序,以便在以嵌入式模式运行 J2ME 和 Apache Derby 的 PDA 上使用。
我想将图像导入/导出到数据库。我该怎么做?将图像存储为 blob 是否合适?
To retrieve and upload your images from the database you will need the Derby JDBC driver. Read the Derby wiki for more info.
Blob stands for binary large object, and would be good to store an image in.
Using Derby on Java ME platforms wiki page.
Good Luck.