|
Can you tell me dbgetprop(database name, "database", "Comment") with an example to explain the usage of this command?
First, I don't know what the "database name" is, where is it established? Which is its name? Please enlighten me from experts, I am new to VFP
Second, "database" is also a database. What is the difference between it and the database name?
Third, what does the "Comment" command refer to?
-------------------------------------------------- --------------------------------
The database name is its name. After you create a database, such as: abcde.dbc //Note that it is a DBC file
Then the name of your database is: abcde, if the current database is open, then use the following command
Get the relevant notes of the database.
?dbgetprop("abcde","database","Comment")
-------------------------------------------------- --------------------------------
Database is not a database, it is a word, concept, name, no entity.
-------------------------------------------------- --------------------------------
Comment is not a command, here is a parameter, which means that what I want is a comment. |
|