2015-06-01から1ヶ月間の記事一覧

サーブレット・JSPでDBに登録されている画像を表示

JSP <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Insert title here</title> </head> </html>

MySQL リモート接続

ユーザ作成 create user ユーザ名@IPアドレス identification by 'パスワード' ※IPアドレスはクライアント 権限付与 grant all on *.* to ユーザ名@IPアドレス ※IPアドレスはクライアント 接続確認 mysql -h IPアドレス -P 3306 -u ユーザ名 -p ※IPアドレス…

MySQL ファイル(画像)登録

テーブル作成 create table ITEM( ID int primary key auto_increment ,NAME varchar(100) ,IMAGE mediumblob ,index(ID) ); 画像追加 insert into ITEM (NAME, IMAGE) values('りんご', LOAD_FILE('C:/fruits/apple.jpg'));