Development

1.ヘッダファイルに「sqlite3.h」を追加する

2.ライブラリファイルに libsqlite3.dylibを追加する

3.追加方法
プロジェクト名->->targets->Bui ...

Development

1.tm構造体
struct tm {

int
tm_sec;/* seconds after the minute */
int tm_min;
/* minutes after the ...

Source

1.ターミナルを開く
2.cd/Users/XXXX/Library/Developer/Xcode/DerivedData  //DerivedDataディレクトリに入る

3.コマンド:open Derivied ...

Source

1. アプリの共通ファイルディレクトリ
<Home>/AppName.app  //アプリケーション自体パッケージディレクトリ
<Home>/Documents/ //重要なデータファイルとユー ...

Development

同期および非同期スクリプト参考サンプルコード:

<div id=”output”></div>
<button onclick=”updateSyn ...

Source

システム用件
①apache 2.2.9  インストールディレクトリ/usr/local/apache2
② red hat enterprise linux 5

操作手順

1.cp/usr/l ...

DataBase

1.インストール済みパッケージ
.net framework4.0

2.エラーメッセージ:
unable to find a version of the runtime to run this appli ...

Development

1.JSP暗黙オブジェクトはいくつある

9個オブジェクト  out、request、response、session、pageContext、application、config、page、exception。

Source

1.現象:
Subclipseは正常に動くことはできないです。エラーメッセージ:
Failed to load JavaHL Library.

These are the errors that were ...

Development

サンプルコード:

public String getLocaleLanguage() {
Locale l = Locale.getDefault();
return String.format(̶ ...

Development

1.frameworks/base/core/res/res/values/config.xmlを修正

<!– Component name of the service providing networ ...

Development

サンプルのコード下記:

<?php
set_time_limit(0);
function quickSort($arr) {
if (count($arr) > 1) {/
$ ...

Development

 

//昇順
foreach($files as $file_num => $file) {
if(is_file($directory.$file)){
//$file = ico ...

Vue.js

環境
Windows10 home 64bit
Vue.js 3.2.2
Google Chrome 99.0.4844.51

書式

<div @mousemove=イベント名>m ...

Development

コマンド:

yum downgrade php*  //複数の実行することが可能です

Development

1.配列の定義

$items = array(

1 => array(‘id’ => 1, ‘pid’ => 0, ‘name ...

Development

1.データベースを作成、毎日ウェブライトのデータを保存
CREATE TABLE `line` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`pv` int(10) DEFA ...