| 
									
										
										
										
											2008-02-03 16:06:31 -05:00
										 |  |  | ! Copyright (C) 2007, 2008 Doug Coleman. | 
					
						
							| 
									
										
										
										
											2008-02-01 18:43:44 -05:00
										 |  |  | ! See http://factorcode.org/license.txt for BSD license. | 
					
						
							|  |  |  | USING: arrays assocs alien alien.syntax continuations io | 
					
						
							| 
									
										
										
										
											2008-09-10 23:11:40 -04:00
										 |  |  | kernel math math.parser namespaces make prettyprint quotations | 
					
						
							| 
									
										
										
										
											2008-02-13 17:51:16 -05:00
										 |  |  | sequences debugger db db.postgresql.lib db.postgresql.ffi | 
					
						
							| 
									
										
										
										
											2008-02-15 15:01:44 -05:00
										 |  |  | db.tuples db.types tools.annotations math.ranges | 
					
						
							| 
									
										
										
										
											2008-12-17 20:35:53 -05:00
										 |  |  | combinators classes locals words tools.walker db.private | 
					
						
							| 
									
										
										
										
											2009-02-20 23:59:01 -05:00
										 |  |  | nmake accessors random db.queries destructors db.tuples.private | 
					
						
							| 
									
										
										
										
											2009-02-21 22:22:51 -05:00
										 |  |  | db.postgresql db.errors.postgresql splitting ;
 | 
					
						
							| 
									
										
										
										
											2008-02-01 18:43:44 -05:00
										 |  |  | IN: db.postgresql | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-17 20:35:53 -05:00
										 |  |  | TUPLE: postgresql-db host port pgopts pgtty database username password ;
 | 
					
						
							| 
									
										
										
										
											2008-10-02 13:11:56 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | : <postgresql-db> ( -- postgresql-db )
 | 
					
						
							| 
									
										
										
										
											2008-12-17 20:35:53 -05:00
										 |  |  |     postgresql-db new ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <PRIVATE
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TUPLE: postgresql-db-connection < db-connection ;
 | 
					
						
							|  |  |  | : <postgresql-db-connection> ( handle -- db-connection )
 | 
					
						
							|  |  |  |     postgresql-db-connection new-db-connection | 
					
						
							|  |  |  |         swap >>handle ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PRIVATE>
 | 
					
						
							| 
									
										
										
										
											2008-04-05 21:22:33 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-18 17:01:31 -04:00
										 |  |  | TUPLE: postgresql-statement < statement ;
 | 
					
						
							| 
									
										
										
										
											2008-04-05 21:22:33 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | TUPLE: postgresql-result-set < result-set ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-17 20:35:53 -05:00
										 |  |  | M: postgresql-db db-open ( db -- db-connection )
 | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2008-04-05 21:22:33 -04:00
										 |  |  |         [ host>> ] | 
					
						
							|  |  |  |         [ port>> ] | 
					
						
							|  |  |  |         [ pgopts>> ] | 
					
						
							|  |  |  |         [ pgtty>> ] | 
					
						
							| 
									
										
										
										
											2008-10-02 13:11:56 -04:00
										 |  |  |         [ database>> ] | 
					
						
							|  |  |  |         [ username>> ] | 
					
						
							|  |  |  |         [ password>> ] | 
					
						
							| 
									
										
										
										
											2008-12-17 20:35:53 -05:00
										 |  |  |     } cleave connect-postgres <postgresql-db-connection> ;
 | 
					
						
							| 
									
										
										
										
											2008-02-01 18:43:44 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-17 22:04:17 -05:00
										 |  |  | M: postgresql-db-connection db-close ( handle -- ) PQfinish ;
 | 
					
						
							| 
									
										
										
										
											2008-02-01 18:43:44 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-27 15:07:39 -04:00
										 |  |  | M: postgresql-statement bind-statement* ( statement -- ) drop ;
 | 
					
						
							| 
									
										
										
										
											2008-02-01 18:43:44 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-09 20:06:47 -04:00
										 |  |  | GENERIC: postgresql-bind-conversion ( tuple object -- low-level-binding )
 | 
					
						
							| 
									
										
										
										
											2008-04-21 01:45:14 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-09 20:06:47 -04:00
										 |  |  | M: sql-spec postgresql-bind-conversion ( tuple spec -- object )
 | 
					
						
							| 
									
										
										
										
											2008-04-21 14:11:19 -04:00
										 |  |  |     slot-name>> swap get-slot-named <low-level-binding> ;
 | 
					
						
							| 
									
										
										
										
											2008-04-21 01:45:14 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-09 20:06:47 -04:00
										 |  |  | M: literal-bind postgresql-bind-conversion ( tuple literal-bind -- object )
 | 
					
						
							| 
									
										
										
										
											2008-04-21 14:11:19 -04:00
										 |  |  |     nip value>> <low-level-binding> ;
 | 
					
						
							| 
									
										
										
										
											2008-04-21 01:45:14 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-09 20:06:47 -04:00
										 |  |  | M: generator-bind postgresql-bind-conversion ( tuple generate-bind -- object )
 | 
					
						
							| 
									
										
										
										
											2008-04-28 18:17:19 -04:00
										 |  |  |     dup generator-singleton>> eval-generator | 
					
						
							|  |  |  |     [ swap slot-name>> rot set-slot-named ] [ <low-level-binding> ] bi ;
 | 
					
						
							| 
									
										
										
										
											2008-04-21 01:45:14 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-22 18:06:00 -05:00
										 |  |  | M: postgresql-statement bind-tuple ( tuple statement -- )
 | 
					
						
							| 
									
										
										
										
											2009-01-23 19:20:47 -05:00
										 |  |  |     [ nip ] [ | 
					
						
							|  |  |  |         in-params>> | 
					
						
							|  |  |  |         [ postgresql-bind-conversion ] with map
 | 
					
						
							|  |  |  |     ] 2bi
 | 
					
						
							| 
									
										
										
										
											2008-04-20 00:18:12 -04:00
										 |  |  |     >>bind-params drop ;
 | 
					
						
							| 
									
										
										
										
											2008-02-22 18:06:00 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-03 16:06:31 -05:00
										 |  |  | M: postgresql-result-set #rows ( result-set -- n )
 | 
					
						
							| 
									
										
										
										
											2008-04-05 21:22:33 -04:00
										 |  |  |     handle>> PQntuples ;
 | 
					
						
							| 
									
										
										
										
											2008-02-01 18:43:44 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-03 16:06:31 -05:00
										 |  |  | M: postgresql-result-set #columns ( result-set -- n )
 | 
					
						
							| 
									
										
										
										
											2008-04-05 21:22:33 -04:00
										 |  |  |     handle>> PQnfields ;
 | 
					
						
							| 
									
										
										
										
											2008-02-01 18:43:44 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-20 00:48:07 -04:00
										 |  |  | : result-handle-n ( result-set -- handle n )
 | 
					
						
							|  |  |  |     [ handle>> ] [ n>> ] bi ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-09 20:06:47 -04:00
										 |  |  | M: postgresql-result-set row-column ( result-set column -- object )
 | 
					
						
							| 
									
										
										
										
											2008-09-27 15:07:39 -04:00
										 |  |  |     [ result-handle-n ] dip pq-get-string ;
 | 
					
						
							| 
									
										
										
										
											2008-02-03 00:28:33 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-09 20:06:47 -04:00
										 |  |  | M: postgresql-result-set row-column-typed ( result-set column -- object )
 | 
					
						
							| 
									
										
										
										
											2008-04-20 00:41:48 -04:00
										 |  |  |     dup pick out-params>> nth type>> | 
					
						
							| 
									
										
										
										
											2008-09-27 15:07:39 -04:00
										 |  |  |     [ result-handle-n ] 2dip postgresql-column-typed ;
 | 
					
						
							| 
									
										
										
										
											2008-02-15 15:01:44 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-03 16:06:31 -05:00
										 |  |  | M: postgresql-statement query-results ( query -- result-set )
 | 
					
						
							| 
									
										
										
										
											2008-04-20 00:41:48 -04:00
										 |  |  |     dup bind-params>> [ | 
					
						
							| 
									
										
										
										
											2008-02-03 16:06:31 -05:00
										 |  |  |         over [ bind-statement ] keep
 | 
					
						
							|  |  |  |         do-postgresql-bound-statement | 
					
						
							|  |  |  |     ] [ | 
					
						
							|  |  |  |         dup do-postgresql-statement | 
					
						
							|  |  |  |     ] if*
 | 
					
						
							| 
									
										
										
										
											2008-09-09 15:44:14 -04:00
										 |  |  |     postgresql-result-set new-result-set | 
					
						
							| 
									
										
										
										
											2008-02-03 16:06:31 -05:00
										 |  |  |     dup init-result-set ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-15 00:39:20 -05:00
										 |  |  | M: postgresql-result-set advance-row ( result-set -- )
 | 
					
						
							| 
									
										
										
										
											2009-08-14 15:27:23 -04:00
										 |  |  |     [ 1 + ] change-n drop ;
 | 
					
						
							| 
									
										
										
										
											2008-02-15 00:39:20 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | M: postgresql-result-set more-rows? ( result-set -- ? )
 | 
					
						
							| 
									
										
										
										
											2008-04-20 00:41:48 -04:00
										 |  |  |     [ n>> ] [ max>> ] bi < ;
 | 
					
						
							| 
									
										
										
										
											2008-02-01 18:43:44 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | M: postgresql-statement dispose ( query -- )
 | 
					
						
							| 
									
										
										
										
											2008-04-20 00:41:48 -04:00
										 |  |  |     dup handle>> PQclear | 
					
						
							|  |  |  |     f >>handle drop ;
 | 
					
						
							| 
									
										
										
										
											2008-02-03 00:28:33 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | M: postgresql-result-set dispose ( result-set -- )
 | 
					
						
							| 
									
										
										
										
											2008-04-20 00:41:48 -04:00
										 |  |  |     [ handle>> PQclear ] | 
					
						
							|  |  |  |     [ | 
					
						
							|  |  |  |         0 >>n | 
					
						
							|  |  |  |         0 >>max | 
					
						
							|  |  |  |         f >>handle drop
 | 
					
						
							|  |  |  |     ] bi ;
 | 
					
						
							| 
									
										
										
										
											2008-02-01 18:43:44 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | M: postgresql-statement prepare-statement ( statement -- )
 | 
					
						
							| 
									
										
										
										
											2008-04-20 00:41:48 -04:00
										 |  |  |     dup
 | 
					
						
							| 
									
										
										
										
											2008-12-17 22:04:17 -05:00
										 |  |  |     [ db-connection get handle>> f ] dip
 | 
					
						
							| 
									
										
										
										
											2008-04-20 00:41:48 -04:00
										 |  |  |     [ sql>> ] [ in-params>> ] bi
 | 
					
						
							|  |  |  |     length f PQprepare postgresql-error | 
					
						
							|  |  |  |     >>handle drop ;
 | 
					
						
							| 
									
										
										
										
											2008-02-01 18:43:44 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-17 20:35:53 -05:00
										 |  |  | M: postgresql-db-connection <simple-statement> ( sql in out -- statement )
 | 
					
						
							| 
									
										
										
										
											2008-09-09 15:44:14 -04:00
										 |  |  |     postgresql-statement new-statement ;
 | 
					
						
							| 
									
										
										
										
											2008-02-01 18:43:44 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-17 20:35:53 -05:00
										 |  |  | M: postgresql-db-connection <prepared-statement> ( sql in out -- statement )
 | 
					
						
							| 
									
										
										
										
											2008-04-20 18:47:43 -04:00
										 |  |  |     <simple-statement> dup prepare-statement ;
 | 
					
						
							| 
									
										
										
										
											2008-02-13 17:51:16 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-22 18:06:00 -05:00
										 |  |  | : bind-name% ( -- )
 | 
					
						
							| 
									
										
										
										
											2008-02-19 17:00:50 -05:00
										 |  |  |     CHAR: $ 0, | 
					
						
							| 
									
										
										
										
											2008-04-20 18:50:39 -04:00
										 |  |  |     sql-counter [ inc ] [ get 0# ] bi ;
 | 
					
						
							| 
									
										
										
										
											2008-02-14 02:27:54 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-17 20:35:53 -05:00
										 |  |  | M: postgresql-db-connection bind% ( spec -- )
 | 
					
						
							| 
									
										
										
										
											2008-04-20 00:18:12 -04:00
										 |  |  |     bind-name% 1, ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-17 20:35:53 -05:00
										 |  |  | M: postgresql-db-connection bind# ( spec object -- )
 | 
					
						
							| 
									
										
										
										
											2008-10-02 13:11:56 -04:00
										 |  |  |     [ bind-name% f swap type>> ] dip
 | 
					
						
							|  |  |  |     <literal-bind> 1, ;
 | 
					
						
							| 
									
										
										
										
											2008-02-22 18:06:00 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | : create-table-sql ( class -- statement )
 | 
					
						
							| 
									
										
										
										
											2008-02-19 17:00:50 -05:00
										 |  |  |     [ | 
					
						
							| 
									
										
										
										
											2008-09-27 15:07:39 -04:00
										 |  |  |         dupd
 | 
					
						
							| 
									
										
										
										
											2008-02-22 18:06:00 -05:00
										 |  |  |         "create table " 0% 0% | 
					
						
							| 
									
										
										
										
											2008-04-20 00:18:12 -04:00
										 |  |  |         "(" 0% [ ", " 0% ] [ | 
					
						
							|  |  |  |             dup column-name>> 0% | 
					
						
							| 
									
										
										
										
											2008-02-22 18:06:00 -05:00
										 |  |  |             " " 0% | 
					
						
							| 
									
										
										
										
											2008-04-20 16:48:09 -04:00
										 |  |  |             dup type>> lookup-create-type 0% | 
					
						
							| 
									
										
										
										
											2008-02-22 18:06:00 -05:00
										 |  |  |             modifiers 0% | 
					
						
							| 
									
										
										
										
											2008-09-27 15:07:39 -04:00
										 |  |  |         ] interleave
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ", " 0% | 
					
						
							|  |  |  |         find-primary-key | 
					
						
							|  |  |  |         "primary key(" 0% | 
					
						
							|  |  |  |         [ "," 0% ] [ column-name>> 0% ] interleave
 | 
					
						
							|  |  |  |         "));" 0% | 
					
						
							| 
									
										
										
										
											2008-04-20 18:47:43 -04:00
										 |  |  |     ] query-make ;
 | 
					
						
							| 
									
										
										
										
											2008-02-14 02:27:54 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-22 18:06:00 -05:00
										 |  |  | : create-function-sql ( class -- statement )
 | 
					
						
							| 
									
										
										
										
											2008-02-13 17:51:16 -05:00
										 |  |  |     [ | 
					
						
							| 
									
										
										
										
											2008-11-01 16:24:05 -04:00
										 |  |  |         [ dup remove-id ] dip
 | 
					
						
							| 
									
										
										
										
											2008-02-22 18:06:00 -05:00
										 |  |  |         "create function add_" 0% dup 0% | 
					
						
							|  |  |  |         "(" 0% | 
					
						
							|  |  |  |         over [ "," 0% ] | 
					
						
							|  |  |  |         [ | 
					
						
							| 
									
										
										
										
											2008-04-20 16:48:09 -04:00
										 |  |  |             type>> lookup-type 0% | 
					
						
							| 
									
										
										
										
											2008-02-22 18:06:00 -05:00
										 |  |  |         ] interleave
 | 
					
						
							|  |  |  |         ")" 0% | 
					
						
							|  |  |  |         " returns bigint as '" 0% | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         "insert into " 0% | 
					
						
							|  |  |  |         dup 0% | 
					
						
							|  |  |  |         "(" 0% | 
					
						
							| 
									
										
										
										
											2008-04-20 00:41:48 -04:00
										 |  |  |         over [ ", " 0% ] [ column-name>> 0% ] interleave
 | 
					
						
							| 
									
										
										
										
											2008-02-22 18:06:00 -05:00
										 |  |  |         ") values(" 0% | 
					
						
							|  |  |  |         swap [ ", " 0% ] [ drop bind-name% ] interleave
 | 
					
						
							|  |  |  |         "); " 0% | 
					
						
							| 
									
										
										
										
											2008-11-01 16:24:05 -04:00
										 |  |  |         "select currval(''" 0% 0% "_" 0% | 
					
						
							|  |  |  |         find-primary-key first column-name>> 0% | 
					
						
							|  |  |  |         "_seq'');' language sql;" 0% | 
					
						
							| 
									
										
										
										
											2008-04-20 18:47:43 -04:00
										 |  |  |     ] query-make ;
 | 
					
						
							| 
									
										
										
										
											2008-02-13 17:51:16 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-17 20:35:53 -05:00
										 |  |  | M: postgresql-db-connection create-sql-statement ( class -- seq )
 | 
					
						
							| 
									
										
										
										
											2008-02-13 17:51:16 -05:00
										 |  |  |     [ | 
					
						
							| 
									
										
										
										
											2008-02-22 18:06:00 -05:00
										 |  |  |         [ create-table-sql , ] keep
 | 
					
						
							| 
									
										
										
										
											2008-09-27 15:07:39 -04:00
										 |  |  |         dup db-assigned? [ create-function-sql , ] [ drop ] if
 | 
					
						
							| 
									
										
										
										
											2008-02-19 17:00:50 -05:00
										 |  |  |     ] { } make ;
 | 
					
						
							| 
									
										
										
										
											2008-02-13 17:51:16 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-22 18:06:00 -05:00
										 |  |  | : drop-function-sql ( class -- statement )
 | 
					
						
							|  |  |  |     [ | 
					
						
							|  |  |  |         "drop function add_" 0% 0% | 
					
						
							|  |  |  |         "(" 0% | 
					
						
							|  |  |  |         remove-id | 
					
						
							| 
									
										
										
										
											2008-04-20 16:48:09 -04:00
										 |  |  |         [ ", " 0% ] [ type>> lookup-type 0% ] interleave
 | 
					
						
							| 
									
										
										
										
											2008-02-22 18:06:00 -05:00
										 |  |  |         ");" 0% | 
					
						
							| 
									
										
										
										
											2008-04-20 18:47:43 -04:00
										 |  |  |     ] query-make ;
 | 
					
						
							| 
									
										
										
										
											2008-02-22 18:06:00 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | : drop-table-sql ( table -- statement )
 | 
					
						
							|  |  |  |     [ | 
					
						
							| 
									
										
										
										
											2008-05-30 23:47:38 -04:00
										 |  |  |         "drop table " 0% 0% drop
 | 
					
						
							| 
									
										
										
										
											2008-04-20 18:47:43 -04:00
										 |  |  |     ] query-make ;
 | 
					
						
							| 
									
										
										
										
											2008-02-22 18:06:00 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-17 20:35:53 -05:00
										 |  |  | M: postgresql-db-connection drop-sql-statement ( class -- seq )
 | 
					
						
							| 
									
										
										
										
											2008-02-19 17:00:50 -05:00
										 |  |  |     [ | 
					
						
							| 
									
										
										
										
											2008-02-22 18:06:00 -05:00
										 |  |  |         [ drop-table-sql , ] keep
 | 
					
						
							| 
									
										
										
										
											2008-09-27 15:07:39 -04:00
										 |  |  |         dup db-assigned? [ drop-function-sql , ] [ drop ] if
 | 
					
						
							| 
									
										
										
										
											2008-02-19 17:00:50 -05:00
										 |  |  |     ] { } make ;
 | 
					
						
							| 
									
										
										
										
											2008-02-18 17:52:00 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-17 20:35:53 -05:00
										 |  |  | M: postgresql-db-connection <insert-db-assigned-statement> ( class -- statement )
 | 
					
						
							| 
									
										
										
										
											2008-02-19 17:00:50 -05:00
										 |  |  |     [ | 
					
						
							| 
									
										
										
										
											2008-02-22 18:06:00 -05:00
										 |  |  |         "select add_" 0% 0% | 
					
						
							| 
									
										
										
										
											2008-02-19 17:00:50 -05:00
										 |  |  |         "(" 0% | 
					
						
							| 
									
										
										
										
											2008-09-27 15:07:39 -04:00
										 |  |  |         dup find-primary-key first 2, | 
					
						
							| 
									
										
										
										
											2008-02-22 18:06:00 -05:00
										 |  |  |         remove-id | 
					
						
							| 
									
										
										
										
											2008-02-19 17:00:50 -05:00
										 |  |  |         [ ", " 0% ] [ bind% ] interleave
 | 
					
						
							|  |  |  |         ");" 0% | 
					
						
							| 
									
										
										
										
											2008-04-20 18:47:43 -04:00
										 |  |  |     ] query-make ;
 | 
					
						
							| 
									
										
										
										
											2008-02-18 17:52:00 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-17 20:35:53 -05:00
										 |  |  | M: postgresql-db-connection <insert-user-assigned-statement> ( class -- statement )
 | 
					
						
							| 
									
										
										
										
											2008-02-19 17:00:50 -05:00
										 |  |  |     [ | 
					
						
							| 
									
										
										
										
											2008-02-22 18:06:00 -05:00
										 |  |  |         "insert into " 0% 0% | 
					
						
							| 
									
										
										
										
											2008-02-19 17:00:50 -05:00
										 |  |  |         "(" 0% | 
					
						
							| 
									
										
										
										
											2008-04-20 00:41:48 -04:00
										 |  |  |         dup [ ", " 0% ] [ column-name>> 0% ] interleave
 | 
					
						
							| 
									
										
										
										
											2008-02-22 18:06:00 -05:00
										 |  |  |         ")" 0% | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         " values(" 0% | 
					
						
							| 
									
										
										
										
											2008-04-21 14:11:19 -04:00
										 |  |  |         [ ", " 0% ] [ | 
					
						
							|  |  |  |             dup type>> +random-id+ = [ | 
					
						
							|  |  |  |                 [ | 
					
						
							| 
									
										
										
										
											2008-04-28 18:17:19 -04:00
										 |  |  |                     bind-name% | 
					
						
							|  |  |  |                     slot-name>> | 
					
						
							|  |  |  |                     f
 | 
					
						
							|  |  |  |                     random-id-generator | 
					
						
							| 
									
										
										
										
											2008-04-21 14:11:19 -04:00
										 |  |  |                 ] [ type>> ] bi <generator-bind> 1, | 
					
						
							|  |  |  |             ] [ | 
					
						
							|  |  |  |                 bind% | 
					
						
							|  |  |  |             ] if
 | 
					
						
							|  |  |  |         ] interleave
 | 
					
						
							| 
									
										
										
										
											2008-02-19 17:00:50 -05:00
										 |  |  |         ");" 0% | 
					
						
							| 
									
										
										
										
											2008-04-20 18:47:43 -04:00
										 |  |  |     ] query-make ;
 | 
					
						
							| 
									
										
										
										
											2008-02-19 17:00:50 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-17 20:35:53 -05:00
										 |  |  | M: postgresql-db-connection insert-tuple-set-key ( tuple statement -- )
 | 
					
						
							| 
									
										
										
										
											2008-02-25 15:50:42 -05:00
										 |  |  |     query-modify-tuple ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-17 20:35:53 -05:00
										 |  |  | M: postgresql-db-connection persistent-table ( -- hashtable )
 | 
					
						
							| 
									
										
										
										
											2008-02-19 17:00:50 -05:00
										 |  |  |     H{ | 
					
						
							| 
									
										
										
										
											2008-09-27 15:07:39 -04:00
										 |  |  |         { +db-assigned-id+ { "integer" "serial" f } } | 
					
						
							|  |  |  |         { +user-assigned-id+ { f f f } } | 
					
						
							|  |  |  |         { +random-id+ { "bigint" "bigint" f } } | 
					
						
							| 
									
										
										
										
											2008-09-27 16:56:43 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-27 17:26:21 -04:00
										 |  |  |         { +foreign-id+ { f f "references" } } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-10 16:32:36 -04:00
										 |  |  |         { +on-update+ { f f "on update" } } | 
					
						
							| 
									
										
										
										
											2008-09-27 16:56:43 -04:00
										 |  |  |         { +on-delete+ { f f "on delete" } } | 
					
						
							|  |  |  |         { +restrict+ { f f "restrict" } } | 
					
						
							|  |  |  |         { +cascade+ { f f "cascade" } } | 
					
						
							|  |  |  |         { +set-null+ { f f "set null" } } | 
					
						
							|  |  |  |         { +set-default+ { f f "set default" } } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-21 01:45:14 -04:00
										 |  |  |         { TEXT { "text" "text" f } } | 
					
						
							| 
									
										
										
										
											2008-04-20 16:48:09 -04:00
										 |  |  |         { VARCHAR { "varchar" "varchar" f } } | 
					
						
							|  |  |  |         { INTEGER { "integer" "integer" f } } | 
					
						
							|  |  |  |         { BIG-INTEGER { "bigint" "bigint" f } } | 
					
						
							|  |  |  |         { UNSIGNED-BIG-INTEGER { "bigint" "bigint" f } } | 
					
						
							|  |  |  |         { SIGNED-BIG-INTEGER { "bigint" "bigint" f } } | 
					
						
							|  |  |  |         { DOUBLE { "real" "real" f } } | 
					
						
							|  |  |  |         { DATE { "date" "date" f } } | 
					
						
							|  |  |  |         { TIME { "time" "time" f } } | 
					
						
							|  |  |  |         { DATETIME { "timestamp" "timestamp" f } } | 
					
						
							|  |  |  |         { TIMESTAMP { "timestamp" "timestamp" f } } | 
					
						
							|  |  |  |         { BLOB { "bytea" "bytea" f } } | 
					
						
							|  |  |  |         { FACTOR-BLOB { "bytea" "bytea" f } } | 
					
						
							| 
									
										
										
										
											2008-06-12 19:20:15 -04:00
										 |  |  |         { URL { "varchar" "varchar" f } } | 
					
						
							| 
									
										
										
										
											2008-04-20 16:48:09 -04:00
										 |  |  |         { +autoincrement+ { f f "autoincrement" } } | 
					
						
							|  |  |  |         { +unique+ { f f "unique" } } | 
					
						
							|  |  |  |         { +default+ { f f "default" } } | 
					
						
							|  |  |  |         { +null+ { f f "null" } } | 
					
						
							|  |  |  |         { +not-null+ { f f "not null" } } | 
					
						
							|  |  |  |         { system-random-generator { f f f } } | 
					
						
							|  |  |  |         { secure-random-generator { f f f } } | 
					
						
							|  |  |  |         { random-generator { f f f } } | 
					
						
							| 
									
										
										
										
											2008-02-13 17:51:16 -05:00
										 |  |  |     } ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-09 20:06:47 -04:00
										 |  |  | ERROR: no-compound-found string object ;
 | 
					
						
							| 
									
										
										
										
											2008-12-17 20:35:53 -05:00
										 |  |  | M: postgresql-db-connection compound ( string object -- string' )
 | 
					
						
							| 
									
										
										
										
											2008-04-20 01:52:05 -04:00
										 |  |  |     over { | 
					
						
							| 
									
										
										
										
											2008-12-04 01:06:02 -05:00
										 |  |  |         { "default" [ first number>string " " glue ] } | 
					
						
							| 
									
										
										
										
											2008-12-04 03:21:36 -05:00
										 |  |  |         { "varchar" [ first number>string "(" ")" surround append ] } | 
					
						
							| 
									
										
										
										
											2008-09-27 17:26:21 -04:00
										 |  |  |         { "references" [ >reference-string ] } | 
					
						
							| 
									
										
										
										
											2008-09-09 20:06:47 -04:00
										 |  |  |         [ drop no-compound-found ] | 
					
						
							| 
									
										
										
										
											2008-04-20 01:52:05 -04:00
										 |  |  |     } case ;
 | 
					
						
							| 
									
										
										
										
											2009-02-20 23:59:01 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | M: postgresql-db-connection parse-db-error | 
					
						
							| 
									
										
										
										
											2009-02-21 22:22:51 -05:00
										 |  |  |     "\n" split dup length { | 
					
						
							|  |  |  |         { 1 [ first parse-postgresql-sql-error ] } | 
					
						
							|  |  |  |         { 3 [ | 
					
						
							|  |  |  |                 first3
 | 
					
						
							|  |  |  |                 [ parse-postgresql-sql-error ] 2dip
 | 
					
						
							|  |  |  |                 postgresql-location >>location | 
					
						
							|  |  |  |         ] } | 
					
						
							|  |  |  |     } case ;
 | 
					
						
							|  |  |  | 
 |