タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

sqliteに関するwillnetのブックマーク (2)

  • SQLite が unable to open database file で困った - daily dayflower

    データベースファイルはちゃんと httpd から読み書きできるようにしてるのに! いろいろやってたらどうも読めるけど書けない,ということに気づきました。も,もしや,と思って「データベースファイルを置いてあるディレクトリ」の書き込み属性を on にしたら OK になりました。 どういうことかざっくり書くと, drwxr-xr-x dbdir/ _rwxrwxrwx dbdir/target.db というように,データベースファイルの書き込み権限だけで安心してちゃだめで, drwxrwxrwx dbdir/ _rwxrwxrwx dbdir/target.db にしなきゃいかんということです*1。 追記: お礼とかはわざわざコメント欄とかでいただかなくて結構ですよ〜恐縮です *1:もちろん owner 等変更するのでもいいけど

    SQLite が unable to open database file で困った - daily dayflower
    willnet
    willnet 2011/09/14
    ディレクトリの書き込み権限が必要なのは何でだろう?
  • The SQLite Bytecode Engine

    1. Executive Summary SQLite works by translating SQL statements into bytecode and then running that bytecode in a virtual machine. This document describes how the bytecode engine works. This document describes SQLite internals. The information provided here is not needed for routine application development using SQLite. This document is intended for people who want to delve more deeply into the in

    willnet
    willnet 2010/11/06
    sqliteのexplainの読み方
  • 1