Viewing 15 posts - 2,701 through 2,715 (of 5,356 total)
No, I don't know of any. There is no such feature as parameterized queries in Access, which prompt you at runtime for a value of a parameter.
However, you can...
January 27, 2004 at 1:48 pm
That 'quick reply' feature is really neat and handy.
Actually, this new window is not that bad at all. But what annoys me, is that when you post a reply,...
January 27, 2004 at 1:39 pm
Changing your varchar decalration to nvarchar should do it ![]()
January 27, 2004 at 8:15 am
In EM, right-click on the db in question, select All tasks, Generate SQL script, select 'Show all', check 'All Stored Procedures. Then choose the other option you'd like, and there...
January 27, 2004 at 8:01 am
Don't know if this also applies to ADP, but in 'normal' Access DBs' there is a db setting, you'll find in Extras ?!? ->Options on a tab, I guess it's...
January 27, 2004 at 7:03 am
To answer your question, would this help?
declare @search nvarchar(50)
declare @stmt nvarchar(4000)
set @search = '53129,53128,53127'
set @stmt = 'select * from mails_header where id in ('+@search+')'
exec sp_executesql @stmt
January 27, 2004 at 6:48 am
To be honest, I don't know. Best bet I can give you is to look after the user contributed notes in http://www.php.net/manual/en/function.mssql-connect.php
I once tried to connect to SQL Server...
January 27, 2004 at 6:36 am
Send me a private message with your email address. There are two mails from January. I'll forwards them to you. ![]()
January 27, 2004 at 3:11 am
David, didn't you receive one sent by Andy on Sunday, 01/25?
January 27, 2004 at 2:50 am
I don't know of a way to get this value before inserting without querying the system tables.
However, wouldn't SCOPE_IDENTITY() also do the job?
January 27, 2004 at 2:33 am
Maybe this would help
http://www.abaris.se/abaperls/
IIRC, if you are familiar with C or C++ you should be able to do something like
<pseudocode mode on>
common_code.h:
CREATE PROCEDURE get_tbl
SELECT * FROM...
January 27, 2004 at 2:27 am
Thomas,
see I'm in a position I doubt anyone else here on the forum is. I don't do programming for a living anymore
This...
January 27, 2004 at 2:14 am
When you search the site, you'll find several scripts on that topic. My opinion is to do that at your client. With ASP this should be an easy exercise.
January 26, 2004 at 1:53 pm
Viewing 15 posts - 2,701 through 2,715 (of 5,356 total)