0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

cscの作法 その322

Posted at

概要

cscの作法、調べてみた。
sqlite、やってみた。

環境

windows10 64bit

サンプルコード

using System;
using System.Text;
using System.IO;
using System.Data.SQLite;


namespace App
{
	public class Program {
		public static void Main(string[] args) {
			SQLiteConnection.CreateFile("db0.sqlite");
			Console.WriteLine("ok0");
		}
	}
}


コンパイル手順

>csc lite0.cs /reference:System.Data.SQLite.dll

以上。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?