Site hosted by Angelfire.com: Build your free website today!
 

PowerBuilder - PFC - Table of Contents


Sort Service

Color Service

Free (EAF) EAServer / PFC Enterprise Application Framework

Besides being an excellent framework, it was designed by Alex Whitney, Claudio Quant, (Original PFC developers) and Carson Hager - an EAServer Guru. I know Claudio and Alex made sure that it interfaced seamlessly with a PFC based app.

Oh, forgot to mention, the framework is free. You will need to sign a contract which prevents you re-marketing the framework as a part of another class library product, but use in a typical application is free.

How - To's

Menus

String   ls_sql

n_cst_sqlattrib lnv_sqlattrib[ ]

Integer li_return

li_return = inv_sql.of_Parse(mle_sql.text,lnv_sqlattrib)

IF li_return > 0 THEN
	sle_verb.text= lnv_sqlattrib[1].s_verb
	sle_tables.text = lnv_sqlattrib[1].s_tables
	sle_columns.text = lnv_sqlattrib[1].s_columns
	sle_values.text = lnv_sqlattrib[1].s_values
	sle_where.text = lnv_sqlattrib[1].s_where
	sle_order.text = lnv_sqlattrib[1].s_order
	sle_group.text = lnv_sqlattrib[1].s_group
	sle_having.text= lnv_sqlattrib[1].s_having
END IF

PFCSig Mail Archive