C# Class SemWeb.Stores.PostgreSQLStore

Inheritance: SQLStore, IDisposable
ファイルを表示 Open project: JoshData/semweb-dotnet

Public Methods

Method Description
Close ( ) : void
PostgreSQLStore ( string connectionString, string table ) : System

Protected Methods

Method Description
BeginTransaction ( ) : void
CreateIndexes ( ) : void
CreateLikeTest ( string column, string match, int method, System command ) : void
CreateNullTest ( string column, System command ) : void
CreateTable ( ) : void
EndTransaction ( ) : void
EscapedAppend ( StringBuilder b, string str ) : void
RunCommand ( string sql ) : void
RunReader ( string sql ) : IDataReader
RunScalar ( string sql ) : object

Private Methods

Method Description
EscapedAppend ( StringBuilder b, string str, bool forLike ) : void
RefreshConnection ( ) : void

Method Details

BeginTransaction() protected method

protected BeginTransaction ( ) : void
return void

Close() public method

public Close ( ) : void
return void

CreateIndexes() protected method

protected CreateIndexes ( ) : void
return void

CreateLikeTest() protected method

protected CreateLikeTest ( string column, string match, int method, System command ) : void
column string
match string
method int
command System
return void

CreateNullTest() protected method

protected CreateNullTest ( string column, System command ) : void
column string
command System
return void

CreateTable() protected method

protected CreateTable ( ) : void
return void

EndTransaction() protected method

protected EndTransaction ( ) : void
return void

EscapedAppend() protected method

protected EscapedAppend ( StringBuilder b, string str ) : void
b StringBuilder
str string
return void

PostgreSQLStore() public method

public PostgreSQLStore ( string connectionString, string table ) : System
connectionString string
table string
return System

RunCommand() protected method

protected RunCommand ( string sql ) : void
sql string
return void

RunReader() protected method

protected RunReader ( string sql ) : IDataReader
sql string
return IDataReader

RunScalar() protected method

protected RunScalar ( string sql ) : object
sql string
return object