MariaDB

操作方法
1.データベースを作成
書式 CREATE DATABASE データベース名

MariaDB > CREATE DATABASE testDB;Query OK, 1 row affe ...

MariaDB

書式1
mariadb -u root -pパスワード
使用例

>mariadb -u root -p456pwdWelcome to the MariaDB monitor. Commands end w ...

MariaDB

操作方法
1.「スタート」->「Windowsシステムツール」をクリックする

2.「コントロールパネル」をクリックする

3.「システムとセキュリティ」をクリックする

4.「システム」を ...

MariaDB

ダウンロード

操作方法
1.「mariadb-10.6.4-winx64.msi」をダブルクリックする。

2.「Next」->「I accept the terms in the Lic

Python

書式
使用例

# coding: utf-8cft = res = print (res)

結果

Ubuntu 20.04

1.powersehllのインストール
# sudo snap install powershell –classic
powershell 7.1.4 from Microsoft PowerShell? ...

C#

書式
リスト名.Add(要素)
使用例

using System;using System.Collections.Generic;namespace ConsoleApp1{ class Program { s ...

C#

書式
修飾子 戻り値の型 メソッド名 (引数)
{
return 値;
}

使用例

using System;namespace Project1{ class Example {// ...

C#

書式
リスト名.First()
使用例

using System;using System.Collections.Generic;using System.Linq;class Program { static ...

C#

書式
リスト名.Last()
使用例

using System;using System.Collections.Generic;using System.Linq;class Program { static ...

Python

書式
json.dumps(obj, *, skipkeys=False, ensure_ascii=True, check_circular=True, allow_nan=True,
cls=None, inden ...

Python

書式
json.dumps(obj, *, skipkeys=False, ensure_ascii=True,
check_circular=True, allow_nan=True, cls=None,
i ...

Python

書式
json.loads()JSON形式の文字列を辞書に変換する
使用例

import json# jsonデータの定義:cft = '{ "username":"yama", "age":30, "city" ...

C#

書式
delegate void メソッド名(string addr)
使用例

using System; delegate void delegatesample(string addr); class Pro ...

Ubuntu 20.04

1.パッケージをアップデート
# sudo apt update
# sudo apt install software-properties-common

2.Repositoryを登録
# su ...

VB.net

書式
1.正規表現式 :文字列{回数}
2.Public Function IIf (Expression As Boolean, TruePart As Object, FalsePart As Object) As ...

PHP

説明
json_encode(mixed $value, int $flags = 0, int $depth = 512): string|false
与えられた value を JSON 形式にした文字列を返します ...

VB.net

書式
ReadOnly 変数名 As データ型
使用例

Module Module1 'String型定数を定義 Public ReadOnly CITY As String = "tokyo" 'Integer ...