473,394 Members | 1,641 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

docmd.runsql

Hi All

I am trying to run the below but I receive the following error
"runsql action requires an argument consisting of an SQL statment"

Dim MySQL$
MySQL$ = "Select * from mytablename"
DoCmd.RunSQL MySQL$

Any reason for that

Thanks
Nov 13 '05 #1
3 3437
On 15 Jun 2004 03:56:36 -0700, Pathfinder wrote:
Hi All

I am trying to run the below but I receive the following error
"runsql action requires an argument consisting of an SQL statment"

Dim MySQL$
MySQL$ = "Select * from mytablename"
DoCmd.RunSQL MySQL$

Any reason for that

Thanks


You can not run a Select query using RunSQL, only Action Queries.
Read Access Help.
--
Fred
Please only reply to this newsgroup.
I do not reply to personal email.
Nov 13 '05 #2
Pathfinder wrote:
Hi All

I am trying to run the below but I receive the following error
"runsql action requires an argument consisting of an SQL statment"

Dim MySQL$
MySQL$ = "Select * from mytablename"
DoCmd.RunSQL MySQL$

Any reason for that

Thanks


It may be that you have not explicitly defined the MYSQL$ variable's type.

Have you tried?:

Dim MySQL$ As String

The docmd.runSQL command IS expecting a string variable and maybe its
tripping up because its not explicitly a string ('cause its a var)

Alternately, maybe the $ is causing a problem. Just guessing on that one
Nov 13 '05 #3
"Mr. Smith" <Mr.Smith@Large> wrote in
news:40***********************@news.syd.swiftdsl.c om.au:
Pathfinder wrote:
Hi All

I am trying to run the below but I receive the following
error "runsql action requires an argument consisting of an
SQL statment"

Dim MySQL$
MySQL$ = "Select * from mytablename"
DoCmd.RunSQL MySQL$

Any reason for that

Thanks
It may be that you have not explicitly defined the MYSQL$
variable's type.


Baloney. dim mysql$ does define the variable as a string. it's an
obsolete way, but it still works.

Have you tried?:

Dim MySQL$ As String

The docmd.runSQL command IS expecting a string variable and
maybe its tripping up because its not explicitly a string
('cause its a var)
Baloney.a variant works.

Alternately, maybe the $ is causing a problem. Just guessing
on that one


You don't have to guess anymore. the real reason the original
poster is getting nowhere is that runSQL doesn't return records.
The statement being run does return records and therefore cannot
work

From the help file on the RunSQL method:
A string expression that's a valid SQL statement for an action
query or a data-definition query.

Bob Quintal

Nov 13 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Jim | last post by:
I am using Access 97 on a PC running Windows NT 4.0 SP6a. I have some code (shown below) intended to add a set of records to one table (tblGradeProps) when a new record is created in another...
4
by: Rotsj | last post by:
Hi, i try to execute an update query from within a form, but i get the message: run time error '3144'. Syntax error on the update statement when i try something like this: DoCmd.RunSQL...
0
by: Andy | last post by:
Hello, I am running an sql statement that INSERTS INTO a table. If I run the query using docmd.runSQL, it works fine - new records are added to the table and duplicate records are disregared (...
7
by: Richard Hollenbeck | last post by:
Help! I don't know why this isn't working: Private Sub Combo9_Change() Dim UsersCourseSelection As String UsersCourseSelection = Me("Combo9").Value Combo13.Visible = True 'the following...
8
by: RC | last post by:
In my Access 2002 form, I have a combo box and on the AfterUpdate event I use DoCmd.RunSQL ("UPDATE .... to update records in a table. When it starts to run I get a message "You are about to...
6
by: David | last post by:
I am trying to insert an employee number into the EmpNbr field in my main table from a form where I add a new employee to my employee table. I was hoping this command would work, but it isn't. ...
2
by: ben | last post by:
I have the following code in a VBA module: DoCmd.RunSql "Update tData Set sd = Log(Strike/Price) where symbol = '" & symbol & "'" This statement worked fine, and was using the built in math...
3
by: jl2886 | last post by:
Hello. I have two questions: Private Sub Form_Load() Dim assID As Long assID = DMax("CLng(Right(,3))", "Master_Log") Me.LSI_Case_Number = Month(Date) & Format(Year(Date), "yy") & "-" &...
1
by: natural | last post by:
Good Afternoon I have an option grou[ and on the after update i would like to provide the user with a msgbox, and then action placed my docmd.setwarnings false everywhere, but i still get my...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.