|
|
|
|
VBSdb Faqs
Yes, VBSdb works with PWS 4.0, IIS 4.0 and IIS 5.0. It is 100% ASP 2.0 and ASP 3.0 compatible.
VBSdb can connect to any ADO enabled provider. Microsoft Access, SQL Server, Oracle, Fox Pro just to mention a few. ADO 2.1 or higher version is required. Most (if not all) hosting services use ADO 2.5 or higher. If your developing machine has to be update, please visit Microsoft Site to freely download latest MDAC version.
No you don't. VBSdb is an open source module: you copy it in a foder and just include a file in your asp file, then all VBSdb properties and methods are available to you.
We deliver the test.mdb sample database in Microsoft Access 2000 format. If you need it in Microsoft Access 97 format, please contact us by mail.
Each VBSdb release comes out with two versions: VBSdb-Free and VBSdb-Pro. VBSdb-Free can be downloaded at no charge and used to develop your sites.
VBS-db supports more properties and methods. Pro only methods are labeled with a Pro Marker in the Documentation page.
Among other pro only features, are the Grid/Form template support, better client side Javascript validation and subtable support.
Registration gives you the right to use VBSdb-Pro (one year updates included). Furthermore, registration allows you to receive a priviledged e-mail support. Registered users are also entitled to download revisions and beta versions released within one year from the registration date.
VBSdb-Revision is a release having the same features (and documentation) of the last VBSdb-Pro release, but with some improvements: bugs are fixed in a timely manner and better algorithms are implemented, when found.
Set the GlobalId property to a different value for the two objects. Doing so, you enable VBSdb to discriminate which object the last command refers to.
Of course, you can: if you use it with an Access mdb you simply have to set the Mdb property with the path to the mdb database. If you use a DSN-Less connection for another database, simply set the VBSdb Dsn property with your complete DSN-Less connection string.
Please, refer to this forum topic.
You are probably using the Norton Antivirus. It is not a problem of VBSdb, it is very well known conflict between the Norton Antivirus and the ASP File System Object. Anyway, it can be easily solved: please refer to this forum topic to know all the details.
You can easily do it using a join in the Sql property assignment. Please, refer to this forum topic for further details.
By default, VBSdb encodes the HTML content before displaying it. If you want to avoid such encoding, simply assign the corresponding field to the ViewFieldFormats property. For instance, use something like this:
objVbsDb( "ViewFieldFormats" ) = "yourFieldName|{{yourFieldName}}" By doing so, your field content will be displayed 'as is', and the HTML formatting tags will be directly applied to the layout. |