Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commita00c668

Browse files
committed
Upgrade to 0.91 ...
1 parente741937 commita00c668

File tree

5 files changed

+2645
-2515
lines changed

5 files changed

+2645
-2515
lines changed

‎src/bin/pgaccess/README.pga

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
2222
---------------------------------------------------------------------------
2323

2424

25-
PGACCESS 0.90 18 September 1998
25+
PGACCESS 0.91 1 November 1998
2626
================================
2727
I dedicate this program to my little daughters Ana-Maria and Emilia and to my
2828
wife for their understanding. I hope they will forgive me for spending so many

‎src/bin/pgaccess/a_right.gif

207 Bytes
Loading

‎src/bin/pgaccess/formdemo.sql

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
CREATETABLEpga_queries (querynamevarchar(64), querytypechar(1), querycommandtext);
2-
CREATETABLEpga_forms (formnamevarchar(64), formsourcetext);
3-
CREATETABLEpga_scripts (scriptnamevarchar(64), scriptsourcetext);
4-
CREATETABLEpga_reports (reportnamevarchar(64), reportsourcetext,reportbodytext,reportprocstext,reportoptionstext);
5-
CREATETABLEphonebook (namevarchar(32), phone_nrvarchar(16), cityvarchar(32), companybool,continent char16);
6-
CREATETABLEpga_layout (tablenamevarchar(64), nrcolsint2,colnamestext,colwidthtext);
7-
COPY pga_queriesFROM stdin;
1+
CREATETABLE"pga_queries" ("queryname"varchar(64),"querytype"char(1),"querycommand""text");
2+
CREATETABLE"pga_forms" ("formname"varchar(64),"formsource""text");
3+
CREATETABLE"pga_scripts" ("scriptname"varchar(64),"scriptsource""text");
4+
CREATETABLE"pga_reports" ("reportname"varchar(64),"reportsource""text","reportbody""text","reportprocs""text","reportoptions""text");
5+
CREATETABLE"phonebook" ("name"varchar(32),"phone_nr"varchar(16),"city"varchar(32),"company""bool","continent"char(16));
6+
CREATETABLE"pga_layout" ("tablename"varchar(64),"nrcols""int2","colnames""text","colwidth""text");
7+
COPY"pga_queries"FROM stdin;
88
Query that can be savedas viewSselect*from phonebookwhere continent='usa'
99
\.
10-
COPY pga_formsFROM stdin;
10+
COPY"pga_forms"FROM stdin;
1111
A simple demo formasdf 14 {1 2 3 4 5 6 7 8 9 10 11 12 13 14} 377x315+170+155 {label label1 {15 36 99 57} {} {Selected color} {}} {entry entry2 {111 36 225 54} {} entry2 color} {radio red {249 21 342 36} {} {Red as cherry} color} {radio green {249 45 342 60} {} {Green as a melon} color} {radio blue {249 69 342 84} {} {Blue as the sky} color} {button button6 {45 69 198 99} {set color spooky} {Set a weird color} {}} {label label7 {24 129 138 147} {} {The checkbox's value} {}} {entry entry8 {162 129 172 147} {} entry8 cbvalue} {checkbox checkbox9 {180 126 279 150} {} {Check me :-)} cbvalue} {button button10 {219 273 366 303} {destroy .asdf} {Close that simple form} {}} {button button11 {219 237 366 267} {open_form "Phone book"} {Open my phone book} {}} {listbox lb {12 192 162 267} {} listbox12 {}} {button button13 {12 156 162 186} {.asdf.lb insert end red green blue cyan white navy black purple maroon violet} {Add some information} {}} {button button14 {12 273 162 303} {.asdf.lb delete 0 end} {Clear this listbox} {}}
1212
Phone bookpb26 {1234567891011121314151617181920212223242526} 444x310+284+246 {label label1 {33126330} {} Name {}} {entry name_entry {87921730} {} entry2 pbqs(name)} {label label3 {33397354} {} Phone {}} {entry entry4 {873619557} {} entry4 pbqs(phone_nr)} {label label5 {33667884} {} City {}} {entry entry6 {876319584} {} entry6 pbqs(city)} {query qs {363333} {} query7 {}} {button button8 {126177198203} {.pb.qs:setsql"select oid,* from phonebook where name ~* '$what' order by name"\
1313
.pb.qs:open\
@@ -56,32 +56,32 @@ tk_messageBox -title Information -message "A new record has been added!"\
5656
set pbqs(company) f\
5757
focus .pb.name_entry} New {}} {listbox allnames {246 12 432 240} {} listbox26 {}}
5858
\.
59-
COPY pga_scripts FROM stdin;
59+
COPY"pga_scripts" FROM stdin;
6060
How are forms keeped inside ?open_table pga_forms\
6161
\
6262
6363
\.
64-
COPY pga_reports FROM stdin;
64+
COPY"pga_reports" FROM stdin;
6565
\.
66-
COPY phonebook FROM stdin;
67-
IBM623346234\Ntusa
68-
John Doe+44 35 2993825Washingtonfusa
69-
Bill Clinton+44 35 9283845New Yorkfusa
70-
Monica Levintchi+44 38 5234526Dallasfusa
71-
Bill Gates+42 64 4523454Los Angelesfusa
72-
COMPAQ623462345\Ntusa
73-
SUN784563253\Ntusa
74-
DIGITAL922644516\Ntusa
75-
FIAT623463445\Nteurope
76-
MUGADUMBU+92 534662634\Ntafrica
77-
Frank Zappa6734567Montrealfusa
78-
Jimmy Page66323452feurope
79-
Constantin Teodorescu+40 39 611820Brailafeurope
80-
Ngbendu Wazabanga34577345fafrica
81-
Victor Ciorbea634567Bucurestifeurope
82-
Mugabe Kandalam7635745fafrica
66+
COPY"phonebook" FROM stdin;
67+
IBM623346234\Ntusa
68+
John Doe+44 35 2993825Washingtonfusa
69+
Bill Clinton+44 35 9283845New Yorkfusa
70+
Monica Levintchi+44 38 5234526Dallasfusa
71+
Bill Gates+42 64 4523454Los Angelesfusa
72+
COMPAQ623462345\Ntusa
73+
SUN784563253\Ntusa
74+
DIGITAL922644516\Ntusa
75+
FIAT623463445\Nteurope
76+
MUGADUMBU+92 534662634\Ntafrica
77+
Frank Zappa6734567Montrealfusa
78+
Jimmy Page66323452feurope
79+
Constantin Teodorescu+40 39 611820Brailafeurope
80+
Ngbendu Wazabanga34577345fafrica
81+
Victor Ciorbea634567Bucurestifeurope
82+
Mugabe Kandalam7635745fafrica
8383
\.
84-
COPY pga_layout FROM stdin;
84+
COPY"pga_layout" FROM stdin;
8585
pga_forms2formname formsource82 713
8686
phonebook5name phone_nr city company continent150 105 80 66 85
8787
Usaisti5name phone_nr city company continent150 150 150 150 150

‎src/bin/pgaccess/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ <H1>PgAccess - a free database management tool for <A HREF="http://www.postgreSQ
1212
<P>
1313
<HR></P>
1414

15-
<LI><AHREF="pgaccess-0.90.tar.gz">Download the last version of PgAccess
15+
<LI><AHREF="pgaccess-0.91.tar.gz">Download the last version of PgAccess
1616
(press shift and click this link)</A>.</LI>
1717

18-
<CENTER><P>Latest version of PgAccess is 0.90 ,18 September 1998 !<BR>
18+
<CENTER><P>Latest version of PgAccess is 0.91 ,1 November 1998 !<BR>
1919
<BR>
2020
&nbsp;<B><FONTCOLOR="#FF0000">NEW * NEW * NEW *</FONT></B><B><FONTCOLOR="#FF0000">
2121
NEW *</FONT></B> ==== &gt;<B><FONTSIZE=+1>QUERY PARAMETERS</FONT></B>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp