aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces
Commit message (Collapse)AuthorAge
* Synced gram.y and preproc.y.Michael Meskes2001-02-19
|
* Seems a bad idea to assume that select(2) doesn't touch the input masksTom Lane2001-02-17
| | | | if it returns EINTR.
* Some more updates...Peter Mount2001-02-16
| | | | | | | | | | | | | Fri Feb 17 15:11:00 GMT 2001 peter@retep.org.uk - Reduced the object overhead in PreparedStatement by reusing the same StringBuffer object throughout. Similarly SimpleDateStamp's are alse reused in a thread save manner. - Implemented in PreparedStatement: setNull(), setDate/Time/Timestamp using Calendar, setBlob(), setCharacterStream() - Clob's are now implemented in ResultSet & PreparedStatement! - Implemented a lot of DatabaseMetaData & ResultSetMetaData methods. We have about 18 unimplemented methods left in JDBC2 at the current time.
* ichar() has been renamed to chr(), so fix translation table.Tom Lane2001-02-16
|
* Add casting for numeric/float4/float8 type valueHiroshi Inoue2001-02-16
| | | | | | | | | | | automatically to compensate the lack of automatic conversion functionality of PostgreSQL server. For example if there's a numeric type binding 1.2567 --> 1.2567::numeric. I hope this change would enable the use of numeric type in MS-Access etc. Thanks Hiroki Kataoka for his checking my code.
* 1) Change transaction boundary in autocommit off modeHiroshi Inoue2001-02-15
| | | | | | | | | | per recent discussion in pgsql-odbc. Now SELECT is a boundary but VACUUM isn't. 2) Put back the error handling behavior. When elog(ERROR) was detected the driver automatically issue "ABORT" if a transaction is in progress. 3) Driver version is 7.01.0003(Dave already set it but it was put back).
* Web Feb 14 17:29:00 GMT 2001 peter@retep.org.ukPeter Mount2001-02-14
| | | | | | - Fixed bug in LargeObject & BlobOutputStream where the stream's output was not flushed when either the stream or the blob were closed. - Fixed PreparedStatement.setBinaryStream() where it ignored the length
* Add 7.X to dialog box.Bruce Momjian2001-02-14
|
* Back out all ODBC formatting changes, and back out removal of <6.4Bruce Momjian2001-02-14
| | | | | | protocol. I have left in Tom's SOCK_get_next_byte() fix, and the new win32.mak file addition. I have also left in the 'X' connection close fix.
* Some more including the patch to DatabaseMetaData backed out by Bruce.Peter Mount2001-02-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Tue Feb 13 16:33:00 GMT 2001 peter@retep.org.uk - More TestCases implemented. Refined the test suite api's. - Removed need for SimpleDateFormat in ResultSet.getDate() improving performance. - Rewrote ResultSet.getTime() so that it uses JDK api's better. Tue Feb 13 10:25:00 GMT 2001 peter@retep.org.uk - Added MiscTest to hold reported problems from users. - Fixed PGMoney. - JBuilder4/JDBCExplorer now works with Money fields. Patched Field & ResultSet (lots of methods) for this one. Also changed cash/money to return type DOUBLE not DECIMAL. This broke JBuilder as zero scale BigDecimal's can't have decimal places! - When a Statement is reused, the previous ResultSet is now closed. - Removed deprecated call in ResultSet.getTime() Thu Feb 08 18:53:00 GMT 2001 peter@retep.org.uk - Changed a couple of settings in DatabaseMetaData where 7.1 now supports those features - Implemented the DatabaseMetaData TestCase. Wed Feb 07 18:06:00 GMT 2001 peter@retep.org.uk - Added comment to Connection.isClosed() explaining why we deviate from the JDBC2 specification. - Fixed bug where the Isolation Level is lost while in autocommit mode. - Fixed bug where several calls to getTransactionIsolationLevel() returned the first call's result.
* Remove postgresql jdbc files, per Peter.Bruce Momjian2001-02-13
|
* Remove postgresql jdbc files, per Peter Mount.Bruce Momjian2001-02-13
|
* Back out *inv* changes for this file. Peter want to handle it.Bruce Momjian2001-02-13
|
* Attached is a makefile for the ODBC driver for use under win32. It has beenBruce Momjian2001-02-12
| | | | | | tested only with MS VC++ 6.0SP4 using nmake. Dave Page
* New MS resource file, pgindented.Bruce Momjian2001-02-12
|
* Update ODBC resource MS-generated file.Bruce Momjian2001-02-12
|
* Change more // comments.Bruce Momjian2001-02-12
|
* Remove // and make /* */Bruce Momjian2001-02-12
|
* Replace // comments from file for MS products.Bruce Momjian2001-02-12
|
* SOCK_get_next_byte should not return garbage after error/EOF. ReturnTom Lane2001-02-11
| | | | zero bytes instead.
* Remove unneeded shutdown() call, per Tom Lane.Bruce Momjian2001-02-11
|
* More cleanups.Bruce Momjian2001-02-11
|
* Include file alignment fixes.Bruce Momjian2001-02-11
|
* Move X packet before shutdown().Bruce Momjian2001-02-11
|
* Source alignment cleanups.Bruce Momjian2001-02-11
|
* More cleanup.Bruce Momjian2001-02-11
|
* More cleanup.Bruce Momjian2001-02-11
|
* Cleanup of source.Bruce Momjian2001-02-11
|
* The attached patch does the following:Bruce Momjian2001-02-11
| | | | | | | | | 1) Tidies up the Datasource Dialogue now the version options are gone. 2) Tidies a comment in info.c. 3) Increments all version numbers to 07.01.0003 to take account of recent revisions. Regards, Dave Page
* Clean up mutibyte supoorting source files.Tatsuo Ishii2001-02-11
| | | | Now only wchar.c is shared by fronetnd/backend.
* Disable X connection close in ODBC until solution is found.Bruce Momjian2001-02-10
|
* Only look for bison as YACC; other yaccs need to be selected explicitly.Peter Eisentraut2001-02-10
| | | | | When no suitable YACC is configured, supply useful informational messages to users. (Same way flex has been handled for a while.)
* Repair BSD/OS shared library fixes.Peter Eisentraut2001-02-10
|
* Remove protcol option buttons.Bruce Momjian2001-02-10
|
* ODBC BSD/OS fix.Bruce Momjian2001-02-10
|
* Allow -Bsymbolic on BSDI for ODBC.Bruce Momjian2001-02-10
|
* More ODBC formatting cleanup.Bruce Momjian2001-02-10
|
* Run pgindent over ODBC source. We couldn't do this years ago because weBruce Momjian2001-02-10
| | | | weren't the master source. We are now, and it really needs it.
* Remove protocol-dependent code. This should have been on previous commit.Bruce Momjian2001-02-10
|
* CleanupBruce Momjian2001-02-10
|
* Properly exit ODBC with 'X', allow linking on BSD/OS.Bruce Momjian2001-02-10
|
* Ignore leading whitespace when trying to determine statement type,Tom Lane2001-02-10
| | | | | so that ODBC driver doesn't go belly up by failing to recognize a SELECT as such.
* Restructure the key include files per recent pghackers discussion: thereTom Lane2001-02-10
| | | | | | | | | | | are now separate files "postgres.h" and "postgres_fe.h", which are meant to be the primary include files for backend .c files and frontend .c files respectively. By default, only include files meant for frontend use are installed into the installation include directory. There is a new make target 'make install-all-headers' that adds the whole content of the src/include tree to the installed fileset, for use by people who want to develop server-side code without keeping the complete source tree on hand. Cleaned up a whole lot of crufty and inconsistent header inclusions.
* Remove last code that assumed xinv/xinx are large object files.Bruce Momjian2001-02-09
|
* I have deleted the include of termios.h in include/port/qnx4.h.Bruce Momjian2001-02-09
| | | | | | | | | Then I recompiled pgsql and I have compiled a program with ecpg. I have removed the termios.h, and the ECHO hack. Thanks Maurizio
* Change SELECT to not trigger "BEGIN" in not autocommit mode.Hiroshi Inoue2001-02-09
|
* Fix a misuse of 'char *' declaration.Hiroshi Inoue2001-02-08
|
* Actually, it looks like DEF_PGPORT belongs over in config.h.win32 forTom Lane2001-02-07
| | | | the Windows build...
* Remove broken (and unnecessary) definition of DEF_PGPORT.Tom Lane2001-02-07
|
* Only pass the -L* portions of LDFLAGS to the Python build environment.Peter Eisentraut2001-02-07
| | | | | Other flags can have unpredictable effects when Python uses different commands to build than we do.