connection クラス : RenameTable(string,string)メソッド
説明
テーブル名を変更します。
構文
instance.RenameTable(string oldname, string newname)
引数
クラス | 名前 | 説明 |
string | oldname | 古いテーブル名。 |
string | newname | 新しいテーブル名。 |
返り値
無し。
サンプルコード
1: | connection cnn = new connection("Data Source=c:\somedirectory\somedatabase.sqlite3;Version=3;"); |
2: | cnn.Open(); |
3: | dictionary{string} ds; |
4: | ds.Add("ids","integer"); |
5: | ds.Add("textdata","text"); |
6: | // create table example_tbl(ids integer, textdata text); |
7: | cnn.CreateTable("example_tbl", ds); |
8: | // alter table example_tbl rename to new_example_tbl; |
9: | cnn.RenameTable("example_tbl", "new_example_tbl"); |
10: | cnn.Close(); |
11: | cnn.Release(); |
注意
ALTER TABLE文を作成して実行します。上記のサンプルコードならば以下のSQL文が作成されます。
alter table example_tbl rename to new_example_tbl;
参照リンク
無し。