Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Pervasive SQL syntax

Status
Not open for further replies.

stpaul

Programmer
Jun 4, 2001
1
US
I am a SQL Server programmer who now needs to be able to do stored procedures in Pervasive SQL. Although much of the syntax in the data manager is similar to that in T-SQL (SQL Servers version of SQL), there are some differences. I was wondering if anyone knows a good resource of the SQL syntax.

TIA
Paull
 

Snytax is very straightforward. Here is one written for Scalable SQL, a slightly older version of Pervasive.sql
Create Proc K_test @parm1 as Select * from Batch where Status = 'K' and batch.editscrnnbr = @parm1;
 
Yes you should get a copy of the Pervasive.SQL 2000 SDK which contains all the docs and reference manuals on the SQL used by Pervasive.SQL 2000. Much if it is also contained in Pervasive.SQL 2000i which is P2K with SP3 applied though it does have quite a bit of new functionality. You can download and use the SDK free for 30 days and even after 30 days it retains local workstation access and all the docs and samples. Also all the documentation for Pervasive.SQL 7 (which used ScalableSQL syntax) and Pervasive.SQL 2000i (which uses standard ODBC syntax for everything where that is defined by the ODBC spec) is freely downloadable from
Pervasivite.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top