Re: BLOBs

Поиск
Список
Период
Сортировка
От Eugene Yin
Тема Re: BLOBs
Дата
Msg-id 653214003.3602816.1452562366970.JavaMail.yahoo@mail.yahoo.com
обсуждение исходный текст
Ответ на Re: BLOBs  (Andreas Joseph Krogh <andreas@visena.com>)
Ответы Re: BLOBs
Список pgsql-sql
I did some search on the OID data type.  Here is something I found regarding to the deletion of the OID data.

QUOTE:

"The Large Object method for storing binary data is better suited to storing very large values, but it has its own limitations. Specifically deleting a row that contains a Large Object reference does not delete the Large Object. 

Deleting the Large Object is a separate operation that needs to be performed. 

Large Objects also have some security issues since anyone connected to the database can view and/or modify any Large Object, even if they don't have permissions to view/update the row containing the Large Object reference."



So I have two questions:

1)  If it is true that "Deleting the Large Object is a separate operation that needs to be performed.", after the deletion, what operation I need to perform, in order to delete the OID data in the table?  Possiblely put into an after trigger

2) "Large Objects also have some security issues since anyone connected to the database can view and/or modify any Large Object".  Will this pose a real risk to the security?  or just a forethought?






On Monday, January 11, 2016 9:49 AM, Andreas Joseph Krogh <andreas@visena.com> wrote:


På mandag 11. januar 2016 kl. 16:37:50, skrev Eugene Yin <eugeneymail@ymail.com>:
 
QUOTE:
 
Maven-config:
<properties>    <version.pgjdbc-ng>0.6</version.pgjdbc-ng>
</properties>
<dependency>    <groupId>com.impossibl.pgjdbc-ng</groupId>    <artifactId>pgjdbc-ng</artifactId>    <version>${version.pgjdbc-ng}</version>    <classifier>complete</classifier>
</dependency>
 
 
I do not use Maven.  
 
I use web.xml and standalone-ha.xml of JBoss AS 7.1.1 to configure the JDBC, such as
 
 
[web.xml]
 
<resource-ref>
     <description>Resource reference to my database</description>
    <res-ref-name>jdbc/web</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Application</res-auth>
    <res-sharing-scope>Shareable</res-sharing-scope>
 </resource-ref>
 
    
[standalone-ha.xml]
 
 <datasource jta="false" jndi-name="java:/jdbc/web" pool-name="OracleDS" enabled="true" use-ccm="false">
                    <connection-url>jdbc:oracle:thin:@192.168.1.20:1521:deepy</connection-url>
                    <driver-class>oracle.jdbc.OracleDriver</driver-class>
                    <driver>OracleJDBCDriver</driver>
                    <security>
                        <security-domain>mysecuritydomain</security-domain>
                    </security>
                    <validation>
                        <validate-on-match>false</validate-on-match>
                        <background-validation>false</background-validation>
                    </validation>
                    <statement>
                        <share-prepared-statements>false</share-prepared-statements>
                    </statement>
                </datasource>
 
 
 
What corresponding changes I need to make to use the Postgres?
 
Using Maven is only for getting the right deps in place for your app, it has nothing to do with configuration.
 
The URL should be on the form:
jdbc:pgsql://<host>:<port>/<database_name>?blob.type=oid
Other parameters are available here: http://impossibl.github.io/pgjdbc-ng/
 
--
Andreas Joseph Krogh
CTO / Partner - Visena AS
Mobile: +47 909 56 963
 


Вложения

В списке pgsql-sql по дате отправления:

Предыдущее
От: Michael Moore
Дата:
Сообщение: Very cool 9.5 feature
Следующее
От: Andreas Joseph Krogh
Дата:
Сообщение: Re: BLOBs