Experts Round Table Network
Navigate
Home
ArticleWiki
Forum
Journal
Search
Newsletter
Links
Tech News
expertsrt.com
Welcome Guest.
Username:
Password:
Remember me
Forgot your password?
Register
access query to allow apostrophes
Welcome,
Guest
. Please
login
or
register
.
December 03, 2008, 03:53:16 PM
11305
Posts in
1249
Topics by
498
Members
Latest Member:
katCheeme
Home
Help
Search
Login
Register
Experts Round Table Network
|
Databases
|
Access
|
access query to allow apostrophes
« previous
next »
Pages:
[
1
]
2
3
4
Print
Author
Topic: access query to allow apostrophes (Read 5331 times)
Johnny26652
Offline
Posts: 61
access query to allow apostrophes
«
on:
April 18, 2007, 01:59:16 PM »
Is it possible to use the replace function in the sql that generates the recordsource for the table so that apostrophes are allowed, but won’t cause an error in the recordsource? any help?
thanks
Logged
Johnny
rdivilbiss
Governing Council Member
Offline
Posts: 414
Re: access query to allow apostrophes
«
Reply #1 on:
April 18, 2007, 02:01:37 PM »
ASP or PHP
Logged
Rod
rdivilbiss
Governing Council Member
Offline
Posts: 414
Re: access query to allow apostrophes
«
Reply #2 on:
April 18, 2007, 02:12:12 PM »
INSERT INTO companys ( company, address )
VALUES (Replace("O'Brians Tavern","'","''") , "123 Any Street")
That's Replace("O'Brians Tavern","single quote","single quote single quote")
Logged
Rod
Johnny26652
Offline
Posts: 61
Re: access query to allow apostrophes
«
Reply #3 on:
April 18, 2007, 05:03:19 PM »
i am using replace function in asp to replace apostrophes, double quotes but i was told to do it with sql query.. so i can save a name say O'Malley as O'Malley in the table..also any other double quotes or period or question mark?
Logged
Johnny
rdivilbiss
Governing Council Member
Offline
Posts: 414
Re: access query to allow apostrophes
«
Reply #4 on:
April 18, 2007, 05:18:10 PM »
Well I gave you the query, but that stores O''Mally in the database.
If you use parameterized SQL, you don't have to worry about it.
<!--METADATA TYPE="typelib" uuid="00000205-0000-0010-8000-00AA006D2EA4" -->
Set cmd = Server.CreateObject("ADODB.Command")
Set conn = Server.CreateObject("ADODB.Connection")
Set rs = Server.CreateObject("ADODB.Recordset")
conn.open "database connection string"
Set cmd.ActiveConnection = conn
cmd.CommandText = "INSERT INTO table (name) VALUES (@name);
Set param = cmd.CreateParameter("name",adVarChar,adParamInput,CLng(40),"O'Mally")
cmd.Parameters.Append param
cmd.Execute numAffected,,adExecuteNoRecords
Logged
Rod
Johnny26652
Offline
Posts: 61
Re: access query to allow apostrophes
«
Reply #5 on:
April 18, 2007, 05:26:44 PM »
I am using access.. i am not familiar with parameterized SQL, does it work with access? where can i learn more about it?
my textbox may contain double quotes, question mark something like that how can i handle stuff like that?
thanks rod
Logged
Johnny
rdivilbiss
Governing Council Member
Offline
Posts: 414
Re: access query to allow apostrophes
«
Reply #6 on:
April 18, 2007, 05:32:35 PM »
parameterized SQL works with access. Being a web developer, and based on previous questions I was assuming a web form is involved here. Is that correct?
Logged
Rod
Johnny26652
Offline
Posts: 61
Re: access query to allow apostrophes
«
Reply #7 on:
April 18, 2007, 05:35:51 PM »
You are correct!! where do i start now?
Logged
Johnny
rdivilbiss
Governing Council Member
Offline
Posts: 414
Re: access query to allow apostrophes
«
Reply #8 on:
April 18, 2007, 05:50:05 PM »
http://www.rodsdot.com/ee/parameterized_sql.asp
http://www.rodsdot.com/ee/parameterized-sql-library.asp
Logged
Rod
Johnny26652
Offline
Posts: 61
Re: access query to allow apostrophes
«
Reply #9 on:
April 18, 2007, 06:01:15 PM »
thanks rod. i will go through your articles.. i am sure i have seen the second link tutorial in master/detail topic in asp section but wasn't sure if it was for access... again appreciate your help.
«
Last Edit: April 18, 2007, 06:03:08 PM by Johnny26652
»
Logged
Johnny
rdivilbiss
Governing Council Member
Offline
Posts: 414
Re: access query to allow apostrophes
«
Reply #10 on:
April 18, 2007, 06:31:59 PM »
This uses access and calls the param.. SQL directly...no library.
Of course I like to hide the gory details with the library, which was link two.
Logged
Rod
rdivilbiss
Governing Council Member
Offline
Posts: 414
Re: access query to allow apostrophes
«
Reply #11 on:
April 18, 2007, 06:38:24 PM »
Here is recordset retrieval using the library. (Scroll down for the code)
http://www.rodsdot.com/ee/database3.asp
Another recordset retrieval using a parameter.
http://www.rodsdot.com/ee/access_checkbox.asp
Getting a recordset and performing an update using the library
http://www.rodsdot.com/ee/access_checkbox1.asp
That should be enough to get you going.
Logged
Rod
rdivilbiss
Governing Council Member
Offline
Posts: 414
Re: access query to allow apostrophes
«
Reply #12 on:
April 20, 2007, 02:06:14 PM »
INSERT INTO companys (company) VALUES (Replace("The apostrophe O'Mally and O'Brian Tavern","'","''"));
Stores:
The apostrophe O''Mally and O''Brian Tavern
for me.
That is a valid string... e.g. double quote The apostrophe O single quote Mally and O single quote Brian Tavern double quote.
Your post was
single quote single quote the apostrophe o single quote single quote mally and double quote O single quote Brian single quote Tavern
which is kind of a weird string, so I have no idea what you would get from access.
Logged
Rod
Johnny26652
Offline
Posts: 61
Re: access query to allow apostrophes
«
Reply #13 on:
April 20, 2007, 03:55:11 PM »
test ''the apostrophe o''mally and "O'Brian' Tavern
Function testApostrophe(str)
If Not isNull(str) Then
str = replace(str,"'","''")
End If
CQuote = str
End Function
stores in the database as
test the apostrophe omally and OBrian Tavern
no quotes at all..
what i want my access query do is store O'Mally as O'Mally and not O''Mally
is it possible? thanks rod
Logged
Johnny
rdivilbiss
Governing Council Member
Offline
Posts: 414
Re: access query to allow apostrophes
«
Reply #14 on:
April 20, 2007, 04:11:41 PM »
No, without parameterized queries you'll have to store O''Malley and upom retrieving the recordset do
Replace(rs{name),"''","'")
That is Access and MS SQL's way of escaping the single quote.
Other database engines may do that differently, but you're stuck with the design of Access.
The reason you can do it with parameterized queries is the parameter @name = O'Malley is not treated as part of the SQL.
The way you are doing your query O'Malley IS part of the SQL command and must be escaped to avoid breaking the query.
This is not unlike, in VBScript/ASP id you want a double quote in your string you have to write:
"Quote ""It is better to say nothing an be thought a fool, than to open your mouth and remove all doubt"""
Rod
Logged
Rod
Pages:
[
1
]
2
3
4
Print
« previous
next »
Jump to:
Please select a destination:
-----------------------------
ERT 1.5
-----------------------------
=> Round Table Learning Center
=> Bug reports
-----------------------------
Legacy
-----------------------------
=> The next level
=> History of ERT
-----------------------------
Community Affairs
-----------------------------
=> Introductions
=> Ballot Box
===> Closed Polls
=> Soapbox
=> Propose and Consult
===> Propose and Consult...CLOSED
-----------------------------
Bits and Bytes
-----------------------------
=> Tips, Tricks, Snippets, Tidbits And General Pearls Of Wisdom
-----------------------------
Serverside Technology
-----------------------------
=> PHP
=> ASP
-----------------------------
Webservers
-----------------------------
=> Apache
=> IIS
-----------------------------
Databases
-----------------------------
=> MySQL
=> Access
=> MS SQL Server
-----------------------------
Clientside Technology
-----------------------------
=> HTML
=> CSS
=> Javascript
=> Flash
=> WAP/WML
-----------------------------
Web Technologies
-----------------------------
=> General Web Dev
=> Web Standards
=> XML
=> Online Marketing
-----------------------------
Graphics
-----------------------------
=> Graphics Design and Animation
-----------------------------
Programming
-----------------------------
=> .NET
=> JAVA
=> MS DOS Batch Scripting
=> Mathematics
=> C & C++
=> VB
=> Delphi
=> Algorithm design
-----------------------------
Operating Systems
-----------------------------
=> Windows (General)
=> NT Based (2K, 2K-03, NT, XP, Vista)
=> Open Source (All)
-----------------------------
Hardware
-----------------------------
=> Hardware General
=> Gamers Hardware (Advanced)
-----------------------------
Networking
-----------------------------
=> Home (small)
=> Office (large)
=> Internet
-----------------------------
Security
-----------------------------
=> General Security Issues
-----------------------------
Rants/Opinions/Proposals
-----------------------------
=> Site operation
Powered by SMF 1.1 RC2
|
SMF © 2001-2005, Lewis Media
Joomla Bridge by
JoomlaHacks.com