ODBC Issue using Select satement from VB

andyjarvis
Member Posts: 9
:shock: I am connecting a little VB app to a navision 3.10 database using the ODBC Driver however a couple of the fields i need to read from a select satement have "." in them for example the Numbering field of our Employee table is "No."
When i run the select satement
This returns a run time error as the ODBC Driver cannot cope with the "."
I cannot obviously go about changing the field in an established version, I was hopeing some one had a solution for me on this one!!!
Hope you can help
Andy
When i run the select satement
rsemp.Open "SELECT * FROM Employee where No. ='" & Rs1!Employee_No & "'", NavisionConnect, adOpenForwardOnly
This returns a run time error as the ODBC Driver cannot cope with the "."
I cannot obviously go about changing the field in an established version, I was hopeing some one had a solution for me on this one!!!
Hope you can help
Andy
0
Comments
-
Hi,
I have only done this in 2.01, but I'm sure it's pretty similar in 3.10.
In the options of the ODBC Data Source you should be able to set the identifiers. The default is 'All Except Space', but if you change this to 'a-z,A-Z,0-9,_' you can then replace any character that is not in the range 'a-z,A-Z,0-9' with an underscore.
Your statement should now read:
SELECT * FROM Employee WHERE No_ = '.....'
This should work.
You can also use this to replace spaces, so a field such as 'No. of Users' would read as 'No__of_Users' in the SQL statement.
These options are available for the C/ODBC driver, if you are not using this one, then I'm not sure what options you will have for the character set.
Hope this helps.0 -
Thankyou very very much, problem solved, I knew it worked for spaces just hadnt tried it for "."'s!!!
Thanks
Andy0 -
CMIIW, when a field name contains spaces, use double-quotes:
select "Field Name" from "Table Name"
or in the above example:rsemp.Open "SELECT * FROM Employee where ""No."" ='" & Rs1!Employee_No & "'", NavisionConnect, adOpenForwardOnly
0 -
no that doesnt help - the _ is the way forward.0
Categories
- All Categories
- 73 General
- 73 Announcements
- 66.6K Microsoft Dynamics NAV
- 18.7K NAV Three Tier
- 38.4K NAV/Navision Classic Client
- 3.6K Navision Attain
- 2.4K Navision Financials
- 116 Navision DOS
- 851 Navision e-Commerce
- 1K NAV Tips & Tricks
- 772 NAV Dutch speaking only
- 617 NAV Courses, Exams & Certification
- 2K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 320 Dynamics CRM
- 111 Dynamics GP
- 10 Dynamics SL
- 1.5K Other
- 990 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 35 Design Patterns (General & Best Practices)
- 1 Architectural Patterns
- 10 Design Patterns
- 5 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1.1K General Chat
- 1.6K Website
- 83 Testing
- 1.2K Download section
- 23 How Tos section
- 252 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions