Wrox Programmer Forums
|
Access Discussion of Microsoft Access database design and programming. See also the forums for Access ASP and Access VBA.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Access section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old September 1st, 2005, 08:45 PM
Registered User
 
Join Date: May 2005
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Default Anyone Here Use a CASE Tool?

Do any members of this forum use a CASE tool when they develope a database, or do you think it's a waste of time and money?
Is it over-kill to use a CASE tool on small non client-server projects?
Would using a CASE tool help bring my developer skills to a higher level?
I feel like a weekend hacker when designing my Access databases and think a more managed approach may be what I need, but it's a large investment in time and money.

Opinions Appreciated (before I invest).

Thanks.
 
Old September 2nd, 2005, 08:13 AM
Friend of Wrox
 
Join Date: Mar 2004
Posts: 3,069
Thanks: 0
Thanked 10 Times in 10 Posts
Default

No CASE tools are needed for an integrated (unsplit/desktop/non client-server) Access database. That's way overkill. If you need any of those features to document your project, use Visio. That is more than enough.

In fact, if you have Visio Pro, you can design your database in Visio, and then export it directly to Access and it will be built. You can also reverse engineer a database by pulling it into Access Pro, and it provides full documentation after the fact.

HTH


mmcdonal
 
Old September 2nd, 2005, 08:15 AM
Friend of Wrox
 
Join Date: Mar 2004
Posts: 3,069
Thanks: 0
Thanked 10 Times in 10 Posts
Default

Sorry, you can reverse engineer by pulling the database into VISIO Pro, not Access Pro.


mmcdonal
 
Old September 2nd, 2005, 03:43 PM
Registered User
 
Join Date: May 2005
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Wow, I'm glad I asked! I have Visio2003 and I'll check it out.

Thanks.
 
Old September 6th, 2005, 07:40 AM
Friend of Wrox
 
Join Date: Mar 2004
Posts: 3,069
Thanks: 0
Thanked 10 Times in 10 Posts
Default

It must be Visio PROFESSIONAL. Standard will not work. But the upgrade isn't that much, and well worth it.

mmcdonal
 
Old September 9th, 2005, 04:50 AM
Authorized User
 
Join Date: Jul 2005
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
Default

I have used it as I download a master file from mainframe and due to some part identification process later on (in another process) they need to be Upper Cases only. This is very simple indeed:

Sub Capital()
Dim cnCurrent As ADODB.Connection
Dim rst As ADODB.Recordset
Set cnCurrent = CurrentProject.Connection
Set rst = New ADODB.Recordset

rst.Open "AllParts", cnCurrent, adLockOptimistic, adCmdTable

'Just choose column Type for the process
Do Until rst.EOF
    rst!Type = UCase(rst!Type)
rst.MoveNext
Loop

rst.Close
cnCurrent.Close
Set rst = Nothing
Set cnCurrent = Nothing

End Sub

Have fun
Axxess :) :)







Similar Threads
Thread Thread Starter Forum Replies Last Post
Case in Where Clause acko SQL Server 2000 12 September 12th, 2011 01:43 PM
Case help michael.boucher SQL Server 2005 0 May 23rd, 2008 01:45 AM
search string either Upper case or lower case rylemer Beginning VB 6 3 March 24th, 2004 04:23 PM
Check Case in a Case-Insensitive DB nbryson SQL Language 1 January 23rd, 2004 07:36 AM
Select Case andy24 Classic ASP Databases 5 July 25th, 2003 07:52 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.