Kotlinにて
Caused by: io.realm.exceptions.RealmException: ‘class jp.domain.Classname’ is not part of the schema for this Realm.
と出た場合の対策
“エラー対策 Classname is not part of the schema for this Realm.” の続きを読む
社員同士のゆるーい情報交換ブログです
Kotlinにて
Caused by: io.realm.exceptions.RealmException: ‘class jp.domain.Classname’ is not part of the schema for this Realm.
と出た場合の対策
“エラー対策 Classname is not part of the schema for this Realm.” の続きを読む
必要なのは現在時刻の取得の場合だけかと思ってました。そりゃ必要ですよね。
date_default_timezone_set(‘Asia/Tokyo’); //これが必要
$lastAvailable = new DateTime(‘2011-01-01 00:00:00’);
原文
DateTime::__construct(): It is not safe to rely on the system’s timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone ‘UTC’ for now, but please set date.timezone to select your timezone.
プレースホルダ(?)でも、名前付きプレースホルダ(:name)でも理屈は同じ。
クエリー上に %?% というように%をつけてはいけない。%を付けるのは、バインドした変数の中で行う。
PHP Fatal error: Class ‘MyClass’ not found in /var/usr/test.php on line 999
$a = $stmt->fetchAll(PDO::FETCH_CLASS, ‘MyClass’);
“PHP Fatal error: Class ‘MyClass’ not found in /var/usr/test.php on line 999” の続きを読む
I/O warning : failed to load external entity
$dom = DOMDocument::load($filepath);
“DOMDocument::load で I/O warning : failed to load external entity” の続きを読む
Invalid parameter number: number of bound variables does not match number of tokens in /var/usr/local/app.php on line 999
そもそも、直前のDOMDocument::load($filepath);のインスタンス生成で失敗している可能性。
XMLファイルにパーミッションが正しく設定されているかを確認する。
“getElementsByTagName で Call to a member function getElementsByTagName() on boolean エラー” の続きを読む
原文
PHP Fatal error: Call to a member function format() on string in /var/usr/local/app.php on line 643
原因
インスタンスの生成に失敗している。
変数のクラスが途中で切り替わっている可能性
iOS Safariで
console.log(new Date(‘2010-01-01 00:00:00’));
とすると NaN と表示
原因
日付の – 区切りがだめらしい。