D
DetRich
Hello,
I am writing an application which, among other things is used to store data
about our certificates. Data being inserted includes:
1. Issued To
2. Issued By
3. Expiration Date
4. Other data
What is not included above is the server that the certs are installed on.
So, I think I need to assign a value to a variable and insert that value
along with every row. Something like this:
Hostname = "server01"
INSERT INTO tblCertificates ( IssuedTo, IssuedBy, ExpirationDate,
IntendedPurposes, FriendlyName, Status, CertificateTemplate, Hostname )
I know the syntax isn't correct, but how can I accomplish this?
Thanks very much,
Rich
I am writing an application which, among other things is used to store data
about our certificates. Data being inserted includes:
1. Issued To
2. Issued By
3. Expiration Date
4. Other data
What is not included above is the server that the certs are installed on.
So, I think I need to assign a value to a variable and insert that value
along with every row. Something like this:
Hostname = "server01"
INSERT INTO tblCertificates ( IssuedTo, IssuedBy, ExpirationDate,
IntendedPurposes, FriendlyName, Status, CertificateTemplate, Hostname )
I know the syntax isn't correct, but how can I accomplish this?
Thanks very much,
Rich