예제 #1
0
		public SQLiteException(SQLite3.Result r, string message)
			: base(message) {
			Result = r;
		}
예제 #2
0
파일: SQLite3.cs 프로젝트: Sorenly/neuron
 public static string ColumnString(IntPtr stmt, int index)
 {
     return(Marshal.PtrToStringUni(SQLite3.ColumnText16(stmt, index)));
 }