We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Program IFSTest; var SQLConnection: TDBConnection; SQLQuery: TDBQuery; Begin SQLConnection:= TDBConnection.Create(); SQLConnection.ProviderName := 'MySQL'; // Access, Advantage, ASE, DB2, DBF, InterBase, MySQL, NexusDB, ODBC, Oracle, PostgreSQL, SQL Server, SQLite, MongoDB SQLConnection.UserName := 'root'; SQLConnection.Password := ''; SQLConnection.Server := 'localhost'; SQLConnection.Database := 'mysql'; SQLConnection.Open(); SQLQuery:= TDBQuery.Create(); SQLQuery.Connection := SQLConnection; SQLQuery.SQL.Text := 'select * from user'; SQLQuery.Open; while not SQLQuery.Eof do begin Memo1.Lines.Add(SQLQuery.FieldByNameAsString('User')) ; SQLQuery.Next; end; SQLQuery.Close(); SQLQuery.Free(); SQLConnection.Close(); SQLConnection.free(); End.
Failed when compiling [Error] (7:16): Unknown identifier 'PROVIDERNAME'
please help thanks
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Failed when compiling
[Error] (7:16): Unknown identifier 'PROVIDERNAME'
please help thanks
The text was updated successfully, but these errors were encountered: