ColumnBytes() private method

private ColumnBytes ( IntPtr stmt, int index ) : int
stmt IntPtr
index int
return int
Ejemplo n.º 1
0
        public int ColumnBytes(IDbStatement stmt, int index)
        {
            var dbStatement = (DbStatement)stmt;

            if (_useWinSqlite)
            {
                return(WinSQLite3.ColumnBytes(dbStatement.InternalStmt, index));
            }
            else
            {
                return(SQLite3.ColumnBytes(dbStatement.InternalStmt, index));
            }
        }
Ejemplo n.º 2
0
        public int ColumnBytes(IDbStatement stmt, int index)
        {
            var dbStatement = (DbStatement)stmt;

            return(SQLite3.ColumnBytes(dbStatement.InternalStmt, index));
        }