2012-12-01から1ヶ月間の記事一覧
最近ようやくMySQLを使いはじめたのでコマンドのまとめ。 内容 コマンド テーブル内のカラム一覧 desc デーブル名 DBに移動 use DB名 DB一覧 show databases テーブル一覧 show tables
Seleniumで証明書のないSSLサイトの接続してもInfo画面で止まらないようにするメモ FirefoxProfile profile = new FirefoxProfile(); profile.setAssumeUntrustedCertificateIssuer(false); WebDriver driver = new FirefoxDriver(profile); でいけます。 バ…